Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to do print screen in Windows CE 6.0.
What catalog items to include?
how can i invoke it from my C++ code?
Posted
Updated 19-Nov-10 4:19am
v2

1 solution

You can use the Remote Zoom-In tool.

To do it programmatically, you can use the GDI functions:

1. Use CreateDC() to get a device context for the screen.
2. Use CreateCompatibleDC() to create an empty bitmap.
3. Use BitBlt() to copy from the screen context to the bitmap

One method is described in this article.

-PaulH
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900