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 ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can use EnumWindows to get all top level windows. Within the |
|||
|
|
|
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. |
||||
|
|
|
I found a blog in the issue on http://blogs.msdn.com/vcblog/archive/2007/01/16/spy-internals.aspx |
|||
|
|