EN_SETFOCUS

EN_SETFOCUS

idEditControl = LOWORD(wParam);

hwndEditControl = (HWND)lParam;

The EN_SETFOCUS notification message is sent when an edit control receives the input focus. The control's parent window receives this notification message through a WM_COMMAND message.

Parameters

idEditControl

Value of low word of wParam. Specifies the edit-control ID.

hwndEditControl

Value of lParam. Specifies the edit-control window handle.

See Also

WM_COMMAND