Click to See Complete Forum and Search --> : CCheckListBox


Andrew
May 11th, 1999, 11:34 AM
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

May 11th, 1999, 03:02 PM
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