Click here to Skip to main content
15,923,051 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [Message Deleted] Pin
Iain Clarke, Warrior Programmer27-Jul-09 0:57
Iain Clarke, Warrior Programmer27-Jul-09 0:57 
GeneralRe: [Message Deleted] Pin
Penfold82127-Jul-09 1:59
Penfold82127-Jul-09 1:59 
GeneralRe: [Message Deleted] - Not the end of the world Pin
Iain Clarke, Warrior Programmer27-Jul-09 3:28
Iain Clarke, Warrior Programmer27-Jul-09 3:28 
QuestionTransparent Window on an WinCe-based PNA Pin
ml196925-Jul-09 22:59
ml196925-Jul-09 22:59 
AnswerRe: Transparent Window on an WinCe-based PNA Pin
«_Superman_»26-Jul-09 3:43
professional«_Superman_»26-Jul-09 3:43 
GeneralRe: Transparent Window on an WinCe-based PNA Pin
ml196927-Jul-09 1:32
ml196927-Jul-09 1:32 
GeneralRe: Transparent Window on an WinCe-based PNA Pin
«_Superman_»27-Jul-09 1:52
professional«_Superman_»27-Jul-09 1:52 
GeneralRe: Transparent Window on an WinCe-based PNA Pin
ml196928-Jul-09 6:55
ml196928-Jul-09 6:55 
mhh...

the last link, I think, will not work on a WinCE powered PNA, cause the article says that the newest Win32 Api from Win2000 and above is requiered. Also there is no stdafx.h for wince Frown | :-(
It looks very interesting but I didnot found something thar could help me.

The first thing, will work on WinCe (btw. I didnot get an Error while compiling) but I do not understand all...

With the first suggestion, I tried this...

BLENDFUNCTION bf;

hwnd = CreateWindow(L"testerClass",L"tester Program", WS_POPUP, -25,-25, 65, 65, NULL, NULL, ghInstance, NULL);

bf.BlendOp = AC_SRC_OVER;  //as described in the article
bf.BlendFlags = 0;  //as described in the article
bf.SourceConstantAlpha = 120;  //as described in the article  
bf.AlphaFormat = AC_SRC_ALPHA;  //as described in the article

AlphaBlend(destHDC, -25,-25,65,65,srcHDC,-25,-25,65,65,bf);


hwnd is "my" window and stays ontop of the other window , lets say hwnd2.

How should I use dstHDC and scrHDC?
It is enough to call it like
HDC dstHDC = GetDC(hwnd);
HDC srcHDC = GetDC(hwnd2);

This do not change anything... The window (hwnd) is still visible, full visible.


Michael
QuestionHttpSendRequest() not sending out HTTP requests Pin
GusSabina25-Jul-09 19:13
GusSabina25-Jul-09 19:13 
QuestionCompiler / Linker settings. Pin
FISH78625-Jul-09 18:59
FISH78625-Jul-09 18:59 
AnswerRe: Compiler / Linker settings. Pin
«_Superman_»26-Jul-09 3:47
professional«_Superman_»26-Jul-09 3:47 
GeneralRe: Compiler / Linker settings. Pin
FISH78626-Jul-09 4:52
FISH78626-Jul-09 4:52 
GeneralRe: Compiler / Linker settings. Pin
«_Superman_»26-Jul-09 16:40
professional«_Superman_»26-Jul-09 16:40 
GeneralRe: Compiler / Linker settings. Pin
FISH78626-Jul-09 16:53
FISH78626-Jul-09 16:53 
GeneralRe: Compiler / Linker settings. Pin
FISH78628-Jul-09 10:54
FISH78628-Jul-09 10:54 
QuestionCommunication DLL C# et DLL C++ Pin
wislamOS25-Jul-09 15:29
wislamOS25-Jul-09 15:29 
AnswerRe: Communication DLL C# et DLL C++ Pin
Joe Woodbury25-Jul-09 16:05
professionalJoe Woodbury25-Jul-09 16:05 
GeneralRe: Communication DLL C# et DLL C++ Pin
wislamOS25-Jul-09 16:21
wislamOS25-Jul-09 16:21 
GeneralRe: Communication DLL C# et DLL C++ Pin
harold aptroot25-Jul-09 16:31
harold aptroot25-Jul-09 16:31 
GeneralRe: Communication DLL C# et DLL C++ Pin
Joe Woodbury25-Jul-09 16:41
professionalJoe Woodbury25-Jul-09 16:41 
GeneralRe: Communication DLL C# et DLL C++ Pin
Richard Andrew x6425-Jul-09 17:13
professionalRichard Andrew x6425-Jul-09 17:13 
GeneralRe: Communication DLL C# et DLL C++ Pin
Joe Woodbury25-Jul-09 17:21
professionalJoe Woodbury25-Jul-09 17:21 
AnswerRe: Communication DLL C# et DLL C++ Pin
Randor 25-Jul-09 22:36
professional Randor 25-Jul-09 22:36 
QuestionData integrity question. Pin
Ahmed Charfeddine25-Jul-09 13:36
Ahmed Charfeddine25-Jul-09 13:36 
AnswerRe: Data integrity question. Pin
Joe Woodbury25-Jul-09 15:58
professionalJoe Woodbury25-Jul-09 15:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.