Hello,
I am trying to create a simple list view with two columns (FirstName, LastName). I have tried everything but I cant get the second column (the sub item) to appear. Here is the code I am using:
item_index = ListView_ItemAdd('(L) List View1',"AARON" , 0);
result = ListView_ItemSetSubitem('(L) List View1', item_index, 1, "FITZ");
column_index = ListView_ColumnAdd('(L) List View1', "First Name", 0);
column_index = ListView_ColumnAdd('(L) List View1', "Last Name", 1);
Your help is much appreciated.
Ruaa
*This post is locked for comments