[c++] List of controls of a window

Started by
2 comments, last by SiCrane 15 years, 4 months ago
Hi guys, i want to get all the controls of a window knowing the HWND, is there a way?
Advertisement
EnumChildWindows will give you the HWND of all child windows of the window you pass in.
Quote:Original post by Evil Steve
EnumChildWindows will give you the HWND of all child windows of the window you pass in.


last question:
is there a way to get the window type? (textbox,button etc.)
GetWindowInfo() can be used to determine the class atom for a given window. The class atom can be used with GetClassInfo() to get more information about the window class.

This topic is closed to new replies.

Advertisement