CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 1999
    Posts
    34

    Handle of a window?

    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


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Handle of a window?

    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.


  3. #3
    Join Date
    Jul 1999
    Posts
    34

    Thanx Lothar Haensler

    Thank You!!


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured