How can I retrieve label information for a wxlistctrl ?
I’ve tried something like :
wxListItem itemCol;
m_listCtrl->GetColumn(0, itemCol);
printf("%s\n", itemCol.GetText().c_str());
but it doesn’t work, I get an empty string !
Can someone help me ?
1 Answer