Hi,
Is there a better way to remove items from the Microsoft listview 6.0
activex control.
Our current code is, but it takes a long time if the listview has 10,000
items etc.
With This.Listview
For a = .ListItems.Count To 1 Step - 1
If .ListItems(a).Selected
.Listitems.Remove(.ListItems(a).Index)
ENDIF
EndFor
EndWith
Thanks
Tristan