Column Count ?
C / C++ / MFC
4
Posts
3
Posters
0
Views
1
Watching
-
Use Header Control of CListCtrl. For Example:
CListCtrl* pmyListCtrl;
int nColumnCount = pmyListCtrl->GetHeaderCtrl()->GetItemCount();Mukesh Kumar Software Engineer
-
Use Header Control of CListCtrl. For Example:
CListCtrl* pmyListCtrl;
int nColumnCount = pmyListCtrl->GetHeaderCtrl()->GetItemCount();Mukesh Kumar Software Engineer
-
And see Using the List Control[^] Matt Weagle wrote:"Everything you need to know about using the standard list control in your applications".