PDA

Click to See Complete Forum and Search --> : FIndWindowEx vs GetWindow


parksie
Aug 23rd, 2000, 02:19 PM
FindWindowEx allows you to search for windows that are children of another window. GetWindow just gets any window.

Aug 23rd, 2000, 03:45 PM
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.

Archon
Aug 23rd, 2000, 04:14 PM
Thank you guys. It is clear now.