there is nothing like explorerlistview.selecteditem.remove
so how can i remove/edit the selected item?
How to remove selected item
Re: How to remove selected item
Remove:
Edit the label of an the caret item:
Code: Select all
If Not ExplorerListView1.CaretItem Is Nothing Then
ExplorerListView1.ListItems.Remove ExplorerListView1.CaretItem.Index
End If
Code: Select all
If Not ExplorerListView1.CaretItem Is Nothing Then
ExplorerListView1.ListItems.CaretItem.StartLabelEditing
End If
Crunching for Fab36_Folding-Division at Folding@Home. Join Fab36/Fab30! - Folding@Home and BOINC
Boycott DRM! Boycott HDCP!
Boycott DRM! Boycott HDCP!
Re: How to remove selected item
And what if I have more than one item selected in a listview? How do I remove them all at once?
Re: How to remove selected item
I'm not at home, so cannot test it, but this should work:
Basically you take the collection of items and apply a filter to it that says "Include only those items that are selected". Then you remove all items in this collection.
Code: Select all
Dim col As ListViewItems
Set col = ExLVwU.ListItems
col.FilterType(FilteredPropertyConstants.fpSelected) = FilterTypeConstants.ftIncluding
col.Filter(FilteredPropertyConstants.fpSelected) = Array(True)
col.RemoveAll
Crunching for Fab36_Folding-Division at Folding@Home. Join Fab36/Fab30! - Folding@Home and BOINC
Boycott DRM! Boycott HDCP!
Boycott DRM! Boycott HDCP!
Re: How to remove selected item
Yep, that does work - I've just had a go at it! Many thanks again.

