Hi,
I've got a class derived from CCheckListBox and its working just fine. However I need to get some notification of when the check box is actually clicked. Any idea on how I do this?
A
Printable View
Hi,
I've got a class derived from CCheckListBox and its working just fine. However I need to get some notification of when the check box is actually clicked. Any idea on how I do this?
A
Hi,
CCheckListBox sends the undocumented notification CLBN_CHKCHANGE with a WM_COMMAND message. In the low word of wParam is the ID of the listbox, hi word is CLBN_CHKCHANGE (40), lParam is the window handle.
HTH
Martin