Search results for query: *

  1. S

    ListView Remove Items

    Here's a shorter way of Removing items in a FOR EACH For Each item As String In New List(Of String)(shortlist) If item.Contains("RemoveMe") Then shortlist.Remove(item) End If Next Here you are creating a new list with the data from shortlist and cycling through that...
Back
Top