Is it possible to get image contents of an obstructed window without bringing it to the front? Also, is it possible to send mouse clicks to a specific locations of such window using Windows API? Would the realization be different on Windows XP and Windows 7? What functions I would need and where can I read more about that. Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Windows GDI can assist you on the screenshot task. There's some VB code here to get you started.

There's a lot of material on how to simulate mouse clicks:

http://tomicki.net/mouse.clicker.php

http://stackoverflow.com/questions/806376/simulate-mouse-move-click-keypress-in-an-application-that-is-not-active

http://msdn.microsoft.com/en-us/library/ms171548.aspx

link|improve this answer
Thanks. Would you happen to know whether the code would work on Windows XP if written on Windows 7? – Martynas Aug 16 '10 at 17:03
Yes, I believe it will work. – karlphillip Aug 16 '10 at 19:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.