capture screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi, how can i capture the screen, ex exactly what the users sees? ive looked
around but any code ive found is for vb6
 
iwdu15 said:
hi, how can i capture the screen, ex exactly what the users sees? ive
looked
around but any code ive found is for vb6

An application can simulate a press of the PRINTSCREEN key in order to
obtain a screen snapshot and save it to the clipboard. To do this, call
keybd_event with the bVk parameter set to VK_SNAPSHOT, and the bScan
parameter set to 0 for a snapshot of the full screen or set bScan to 1 for a
snapshot of the active window.

http://msdn.microsoft.com/library/d...en-us/wceshellui5/html/wce50lrfkeybdevent.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top