Adding items to a wxListCtrl by column
- Posted by buzzo Nov 18, 2014
- 1181 views
so far I have been unable to add the columns of a wxListCtrl with properly created columns
set_list_item ( relLV,i, 0,completeName,0) -- nothing in any columns set_list_item ( relLV,i, 1,birthDate,0) -- ditto set_list_item ( relLV,i, 2,deathDate,0) -- ditto set_list_item ( relLV,i, 3,relSex,0) -- ditto -- insert_listctrl_item ( relLV, i, {db_record_data(i)}, 0 ) -- all in col 0 -- insert_listctrl_item ( relLV, i, {completeName,BirthDate,deathDate,relSec}, 0 ) -- completeName in col 0; nothing else
anyone have any ideas?