Seems like this should be simple, but I can't get it to work. I have a multi-select listbox (in Access 2000), and, after a commandbutton is pressed I want all selected values to be de-selected. How???
Here is some of my code:
With lstMyListbox
For a = 0 To .ItemsSelected.Count - 1
.[SomeProperty?] (.ItemsSelected(a)) = False?
Next a
End With
Here is some of my code:
With lstMyListbox
For a = 0 To .ItemsSelected.Count - 1
.[SomeProperty?] (.ItemsSelected(a)) = False?
Next a
End With