am on my chat client i need help on 1 thing please little stuck
i have list1 and have = 1 in that
i need a button code to remove new items that has been added recent that will be list1 value = 2
i tried
to remove the new value but its not removing it
how do i remove new value thats been added in list1
i have list1 and have = 1 in that
i need a button code to remove new items that has been added recent that will be list1 value = 2
i tried
Code:
For i = List1.ListCount - 1 To 0 Step -1 ' counts list entries
If List1.Selected(i) = True Then ' if selected then
List1.RemoveItem i ' optional remove
End If
Next
how do i remove new value thats been added in list1