 |
FindWindowEx Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves a 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 specified child window. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HWND FindWindowEx(
HWND hwndParent,
HWND hwndChildAfter,
LPCTSTR lpszClass,
LPCTSTR lpszWindow
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER FindWindowEx IN user32;
INTEGER hwndParent,;
INTEGER hwndChildAfter,;
STRING @ lpszClass,;
STRING @ lpszWindow
|
 |
 |
 |
| Parameters: |
 |
hwndParent
[in] Handle to the parent window whose child windows are to be searched.
hwndChildAfter
[in] Handle to a child window. The search begins with the next child window in the Z order.
lpszClass
[in]
Pointer to a null-terminated string that specifies the class name or a class atom created by a previous call to the RegisterClass or RegisterClassEx function.
lpszWindow
[in] Pointer to a null-terminated string that specifies the window name (the window"s title). If this parameter is NULL, all window names match. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is a handle to the window that has the specified class and window names. |
 |
 |
| Word Index links for the FindWindowEx : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2004-12-24 12:04:45 | | Modified: | 2004-12-24 12:07:39 | Visited in last 7 days: 36 |