code
m_LISTCTRL.InsertColumn(0,"USER",LVCFMT_LEFT,50,-1);m_LISTCTRL.InsertColumn(1,"DESCRIPTION",LVCFMT_LEFT,100,-1);m_LISTCTRL.InsertColumn(1,"SIZE",LVCFMT_LEFT,100,-1);
//Item 1
m_LISTCTRL.InsertItem(1,"razo");m_LISTCTRL.SetItem(1,1,LVIF_TEXT,"abc.doc",0,0,0,NULL);m_LISTCTRL.SetItem(1,2,LVIF_TEXT,"145",0,0,0,NULL);
style:report
when I use this I get
USER DESCRIPTION SIZE
razo
I get the same when I changed setitem to setitemtext. Sir I think setitem/setitemtext is not working.what to do
tufail