Here is my code:
Is there a Step -1 for a "For Each" statement?
Code:
Dim Indexes As ListView.SelectedIndexCollection = ListViewListOfScheduleItems.SelectedIndices
If MessageBox.Show("Are you sure you wish to remove the " & Indexes.Count & " selected items?", "Remove", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Yes Then
For Each index In Indexes
ScheduleObjectScheduleItemList.RemoveAt(index)
Next
LoadAllScheduleItemsToListView(ListViewListOfScheduleItems, ScheduleObjectScheduleItemList)
End If