OzzieBloke
Programmer
Hi, I am having trouble with RemoveItem.
This is what I have so far:
I have also tried:
Every time I run the program, it removes the first 2 items from the list and then comes up with an error.
This is what I have so far:
Code:
For N = 0 To List1.ListCount - 1
If List1.Selected(N) = True Then
List1.RemoveItem List1.ListIndex
End If
Next
I have also tried:
Code:
For N = 0 To List1.ListCount - 1
If List1.Selected(N) = True Then
List1(Index).RemoveItem List1(Index).ListIndex
End If
Next
Every time I run the program, it removes the first 2 items from the list and then comes up with an error.