Im just curious, how do i get the HWND of another window?
This is a discussion on Hwnd within the Windows Programming forums, part of the Platform Specific Boards category; Im just curious, how do i get the HWND of another window?...
Im just curious, how do i get the HWND of another window?
Hope this helpsThe FindWindow function retrieves the handle to the top-level window whose class name and window name match the specified strings. This function does not search child windows.
Code:HWND FindWindow( LPCTSTR lpClassName, // pointer to class name LPCTSTR lpWindowName // pointer to window name );![]()
"There are three kinds of people in the world...
Those that can count and those that can't."