CBN_KILLFOCUS

CBN_KILLFOCUS

idComboBox = LOWORD(wParam);

hwndComboBox = (HWND)lParam;

The CBN_KILLFOCUS notification message is sent when a combo box loses the input focus. The parent window of the combo box receives this notification message through a WM_COMMAND message.

Parameters

idComboBox

Value of low word of wParam. Specifies the combo-box ID.

hwndComboBox

Value of lParam. Specifies the combo-box window handle.

See Also

WM_COMMAND