Help me, i'm tired of this s***. (sorry about that)
I have a List Control (m_List). I've manage to put infos in it. Here is how I did :
---------------------------------------------
strItem.Format("SOME INFOS"
lvi.iItem = 0;
lvi.iSubItem = 0;
lvi.pszText = (LPTSTR)(LPCTSTR)(strItem);
m_List.InsertItem(&lvi);
strItem.Format("SOME MORE INFOS"
lvi.iSubItem = 1;
lvi.pszText = (LPTSTR)(LPCTSTR)(strItem);
m_List.SetItem(&lvi);
---------------------------------------------
Now, i want to get the infos back when i select something in the list... How can I do this?