|
-
Dec 30th, 1999, 06:42 AM
#1
Thread Starter
New Member
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
-
Dec 30th, 1999, 02:34 PM
#2
Lively Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|