Does anyone knows how to fill a Multi-Column List in runtime with information that is not in any database. Please if anyone knows, HELP ME!
Thanks for your time
Printable View
Does anyone knows how to fill a Multi-Column List in runtime with information that is not in any database. Please if anyone knows, HELP ME!
Thanks for your time
Here is the code
DIM lListItem as lisitem
for icounter=0 to 5
'lvofficeid1 is a listview control
Set lListItem = lvOfficeid1.ListItems.Add()
lListItem.Text = "Parent"
lvOfficeid1.ListItems(iCounter + 1).ListSubItems.Add , , "child"
next icounter
hope it will help.
Thanx Manish