LBN_DBLCLK

LBN_DBLCLK

idListBox = LOWORD(wParam);

hwndListBox = (HWND)lParam;

The LBN_DBLCLK notification message is sent when the user double-clicks a string in a list box. The parent window of the list box receives this notification message through a WM_COMMAND message.

Parameters

idListBox

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

hwndListBox

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

Comments

This message applies only to list-box controls that have LBS_NOTIFY style.

See Also

WM_COMMAND