Hello everybody,

i had a CListCtrl with Checkboxes in the first column. If i start my application i can click my checkbox or change his state. The Problem i had is, that if i scroll down to the end of the list, i can not click on any checkbox or change the state. If i click on the item name, i geht the NM_CLICK event, but on if i click on the checkbox, no event can be received.

Does anybody had an idea, why my CListCtrl doesn't work?

CListCtrl:
Code:
m_listCtrl.SetExtendedStyle(LVS_EX_CHECKBOXES|LVS_EX_GRIDLINES|LVS_EX_FLATSB|LVS_EX_FULLROWSELECT);
MessageMap:
[CODE]
BEGIN_MESSAGE_MAP(cDialogSubPage, CDialog)
ON_NOTIFY(NM_CLICK, LV_TS_CTE_TESTCASES, OnLVClick)
ON_NOTIFY(LVN_ITEMCHANGED, LV_TS_CTE_TESTCASES, OnLVChanged)
ON_NOTIFY(NM_CUSTOMDRAW, LV_TS_CTE_TESTCASES, OnCustomdrawList)
END_MESSAGE_MAP()

Have I forgotten something???

Greetings, Bianca