I usually clear selections in my listbox by using the following: With lstxx
For intI = 0 to .ListCount -1
.Selected(intI) = False
next intI
end With
However this little code does not work when the multi-select property of the listbox is 'None'.
Anybody have another neat lettle way to clear any selections in a listbox with the with the Multi-select set to None? Thanks for your help.
For intI = 0 to .ListCount -1
.Selected(intI) = False
next intI
end With
However this little code does not work when the multi-select property of the listbox is 'None'.
Anybody have another neat lettle way to clear any selections in a listbox with the with the Multi-select set to None? Thanks for your help.