Day to day work issues we find with windows, mac, unix and internet, software apps etc. we get many many questions and find out some weird things tips and tricks about windows OS that might help others, some of these will help others and help our clients setup software to there requirements.
Thursday, 5 February 2015
CTreeCtrl SetCheck not working OnInitDialog() init fix C++
For example:-
HTREEITEM hItem = m_treeCtrl.InsertItem("test");
m_treeCtrl.SetCheck(hItem,TRUE);
doesn't check the checkboxes!
but if you unmodify and re-modify then it works fine:-
m_treeCtrl.ModifyStyle(TVS_CHECKBOXES, 0);
m_treeCtrl.ModifyStyle(0, TVS_CHECKBOXES);
HTREEITEM hItem = m_treeCtrl.InsertItem("test");
m_treeCtrl.SetCheck(hItem,TRUE);
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment