Screen capture doesn't work on MFC application in Vista

Posted by David Thornley on Stack Overflow See other posts from Stack Overflow or by David Thornley
Published on 2008-09-17T20:00:08Z Indexed on 2010/04/20 3:03 UTC
Read the original article Hit count: 282

Filed under:
|
|

We've got some in-house applications built in MFC, with OpenGL drawing routines. They all use the same code to draw on the screen and either print the screen or save it to a JPEG file. Everything's been working fine in Windows XP, and I need to find a way to make them work on Vista.

In three of our applications, everything works. In the remaining one, I can get the window border, title bar, menus, and task bar, but the interior never shows up. As I said, these applications use the exact same code to write to the screen and capture the window image, and the only difference I see that looks like it might be relevant is that the problem application uses the MFC multiple document interface, while the ones that work use the single document interface.

Either the answer isn't on the net, or I'm worse at Googling than I thought. I asked on the MSDN forums, and the only practical suggestion I got was to use GDI+ rather than GDI, and that did nothing different. I have tried different things with every part of the code that captures and prints or save, given a pointer to the window, so apparently it's a matter of the window itself. I haven't rebuilt the offending application using SDI yet, and I really don't have any other ideas.

Has anybody seen anything like this?

© Stack Overflow or respective owner

Related posts about windows-vista

Related posts about mfc