GetFocus
This function retrieves the handle to the keyboard focus window associated with the thread that called the function.
HWND GetFocus(void);
Parameters
None.
Return Values
The handle to the window with the keyboard focus indicates success. NULL indicates that the calling thread's message queue does not have an associated window with the keyboard focus.
Remarks
Even if GetFocus returns NULL, another thread's queue may be associated with a window that has the keyboard focus.
Use the GetForegroundWindow function to retrieve the handle to the window with which the user is currently working.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
Link Library: Caret.lib, Foregnd.lib.
See Also
GetActiveWindow | GetForegroundWindow | GetCapture | SetFocus | WM_KILLFOCUS | WM_SETFOCUS | Keyboard Functions
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.