Somethg about CListCtrl?
1 2 3 4 5 6
|
CListCtrl m_lcDetails; // declared here
// Add three columns here
m_lcDetails.InsertColumn(0, L"Column0", LVCFMT_CENTER, 70);
m_lcDetails.InsertColumn(1, L"Column1", LVCFMT_CENTER, 70);
m_lcDetails.InsertColumn(2, L"Column2", LVCFMT_CENTER, 70);
|
If I want to change from L"Column0",L"Column1",L"Column2" to L"Other0",L"Other1",L"Other2", how could I do?
Topic archived. No new replies allowed.