Capture Partially Transparent Windows On Desktop
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Does anyone have any tips on how to do a screen capture the same way windows does it when pressing the Print Screen key? I don't mean simulating a key click programmatically and then retrieving the clipboard data, I mean doing it via GetDC() etc Currently I do it using GetDC(NULL); and then BitBlt'n to my DC but this doesn't grab layered windows on Win2k/XP which have a partial transparency. :eek: