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....
Printable View
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....
Try this:
VB Code:
Me.ListView1.ListItems.Add 1, , "ItemName"
o...amazing,,,
thanks a lot.
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