Hi,
Form1.ListView1.ListItems.Remove (index)
I presume 'index' applies a single row. What if you want to remove all items and also don't know how many there are ?
(Or would that always be Form1.ListView1.ListItems.Count ) ?
Thanks, ABB
Printable View
Hi,
Form1.ListView1.ListItems.Remove (index)
I presume 'index' applies a single row. What if you want to remove all items and also don't know how many there are ?
(Or would that always be Form1.ListView1.ListItems.Count ) ?
Thanks, ABB
Code:Form1.ListView1.ListItems.Clear
Aah.... so simple when you know!
Thanks, ABB :)