Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Program to discover HWND of objects like windows and buttons

I remember a few years back, I used a program that was capable of showing properties and HWND of any object such as windows and buttons in any Windows program. As I remember it, you just held the mouse over the object of interest and the program showed the information. Does anyone know what program I'm referring to and where I can get hold of it?

like image 967
inquam Avatar asked Dec 27 '10 09:12

inquam


2 Answers

More than likely, you were using Spy++. It gives you a graphical view of all the processes, threads, windows, and window messages on your computer. And as you described, you can drag a target to any window object and show its properties. It comes with most versions of Visual Studio.

However, if you don't have Visual Studio, I'm not sure if it's legally available for download. Instead, try WinSpy++. It is based around the Spy++ utility, but is freely available (including the source).

like image 107
Cody Gray Avatar answered Nov 08 '22 21:11

Cody Gray


It was Spy++ I guess, which is included when installing Visual Studio.

Sample image of the Spy++ Property Inspector

like image 26
Joey Avatar answered Nov 08 '22 22:11

Joey