PDA

Click to See Complete Forum and Search --> : Multi-Column Lists


kike
Dec 30th, 1999, 05:42 AM
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

Manish
Dec 30th, 1999, 01:34 PM
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