Click to See Complete Forum and Search --> : Handle of a window?


Andy K.
July 26th, 1999, 03:07 AM
Anyone knows how to find out the name of the handles of different windows in different programs?
is there any special program to do that (like i click onto window and it tells me it's handle name?) Or maybe some other way?
Please help

Thank You

Lothar Haensler
July 26th, 1999, 03:22 AM
Visual Studio 6 comes with a tool called Spy++ that lets you get information about a window by dragging and dropping a spy symbol onto a window.

It then displays all available information about the window.

You can use the EnumWindows API call or FindWindow to do that yourself.

Andy K.
July 26th, 1999, 04:16 AM
Thank You!!