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
See also:
| file: /Techref/os/win/api/win32/func/src/f25_1.htm, 3KB, , updated: 2000/4/7 12:19, local time: 2012/5/25 10:11,
38.107.179.230:LOG IN |
| ©2012 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://www.piclist.com/techref/os/win/api/win32/func/src/f25_1.htm"> FindWindowEx</A> |
| Did you find what you needed? |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.