|
-
Jan 20th, 2002, 01:58 AM
#1
Thread Starter
New Member
Help. how to insert new item to listview....
I want to insert new item to listview from the beginning. It looks like new item always stay in the first line.
Please, help me....
 cook cook every day 
-
Jan 20th, 2002, 03:48 AM
#2
Try this:
VB Code:
Me.ListView1.ListItems.Add 1, , "ItemName"
-
Jan 20th, 2002, 08:01 PM
#3
Thread Starter
New Member
o...amazing,,,
thanks a lot.
 cook cook every day 
-
Jan 20th, 2002, 08:07 PM
#4
Frenzied Member
try this out i hope it answers other questions you may come up with
With ListView1
.ListItems(1).SubItems(1) = hwndA
.ListItems(2).SubItems(1) = "hello"
.ListItems(1).SubItems(2) = "blank"
End With
- JayWare
Live to love. Not to Hate
Im to busy to have a site. But I got one and still working on it.
http://dre3k.net/
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
|