The FindWindowEx function retrieves the handle to a window whose class name and window name match the specified strings. The function searches child windows, beginning with the one following the given child window.
HWND FindWindowEx(
HWND hwndParent, |
// handle to parent window |
HWND hwndChildAfter, |
// handle to a child window |
LPCTSTR lpszClass, |
// pointer to class name |
LPCTSTR lpszWindow |
// pointer to window name |
); |
If hwndParent is NULL, the function uses the desktop window as the
parent window. The function searches among windows that are child windows of
the desktop. If hwndParent is HWND_MESSAGE, the function searches all
message-only windows.
If hwndChildAfter is NULL, the search begins with the first child window of hwndParent.
Note that if both hwndParent and hwndChildAfter are NULL, the
function searches all top-level and message-only windows.
If the function succeeds, the return value is the handle to the window that has the specified class and window names.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
EnumWindows, FindWindow, GetClassName, GlobalAddAtom
file: /Techref/os/win/api/win32/func/src/f25_1.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/10 10:31,
18.117.8.62:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.org/Techref/os/win/api/win32/func/src/f25_1.htm"> FindWindowEx</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.