This notification message is sent by an application when the user double-clicks a string in a list box. The parent window of the list box receives this notification message through the WM_COMMAND message.
At a Glance
Header file: | Winuser.h |
Windows CE versions: | 1.0 and later |
Syntax
LBN_DBLCLK idListBox = (int)LOWORD(wParam);
hwndListBox = (HWND) lParam;
Parameters
idListBox
Identifier of the list box.
hwndListBox
Handle to the list box.
Remarks
Only a list box that has the LBS_NOTIFY style will send this notification message.
See Also