I probably should know this, but once I've selected something in a listbox, how can I un-select something?
Printable View
I probably should know this, but once I've selected something in a listbox, how can I un-select something?
List1.Selected(List1.ListIndex) = False
Another way to turn one or more off.
VB Code:
Dim lngIndex As Long For lngIndex = 0 To List1.ListCount - 1 List1.Selected(lngIndex) = False Next
Thanks.