Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a software for test automation. To get it working it need's to "have a look" on the desktop and all open windows. It needs to know which windows are open and what controls they consist of. So it has to do something similar to what Spy++ is doing (Spy++ from Visual Studio). Does anyone know how Spy ++ get's all the information ? Are there any Windows Methods one can call to retrieve information about open windows ?

share|improve this question
Great Question! – user295190 Aug 12 '10 at 1:24

3 Answers

up vote 8 down vote accepted

You can use EnumWindows to get all top level windows. Within the lpEnumFunc you can call FindWindowEx to get child windows/controls of each top level window and then any other interesting function that gives you information you need, e.g. GetClassName, GetClassInfo, GetClientRect etc. etc. Take a look here for more

share|improve this answer

It's called a windows hook. Checkout the Win32 API SetWindowHookEx.

There are different types of hooks, they reside in a DLL and that DLL function is called by Windows for the type of windows messages of a specific thread or all threads in the same desktop.

Please also see my related answer on Windows hooks here.

share|improve this answer
thanks anyway, those hook's are "the other big thing" i need ... – Marcus Tik Apr 19 '09 at 7:53

I found a blog in the issue on http://blogs.msdn.com/vcblog/archive/2007/01/16/spy-internals.aspx
/L

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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