I have eight list boxes on a form. When you click on an item in a list the form populates with corresponding data.
I want the list box item to 'unselect' if I click from one list box to another
Here is what I have tried
I have tried this in GotFocus andf Lost Focus but nothing happens
Any ideas?
I want the list box item to 'unselect' if I click from one list box to another
Here is what I have tried
Code:
Private Sub ListBoxName_LostFocus()
Me.OtherListBoxName = Null
I have tried this in GotFocus andf Lost Focus but nothing happens
Any ideas?