FindWindowEx allows you to search for windows that are children of another window. GetWindow just gets any window.
Printable View
FindWindowEx allows you to search for windows that are children of another window. GetWindow just gets any window.
GetWindow and FindWindowEx basically the same, but FindWindowEx is more specific. For example, when using GetWindow all you have to do is specify the hWnd and a Flag (relating to the ZOrder or Owner) whereas FindWindowEx lets you search a specific class and a specific name as well.
Thank you guys. It is clear now.