Un-Selecting Information In List Boxes

  • Thread starter Thread starter Jasnic
  • Start date Start date
J

Jasnic

Guest
I have 4 list boxes on the same form, that contain different pieces of informantion. I also have a button below the boxes to view the record that is selected. The problem is that if I select 1 record from 1 list box, I can't change my mind and select a different record because the original record in the 1st list box will stay selected, while the next record in another list box will also remain selected. How can I get this to only select 1 record from 1 list box and if you select another record, the previous record becomes unselected? Thanks
 
Just set the value of the other list boxes to null. In the OnEnter property of each box, you could put:

lbxOne = Null
lbxTwo = Null
lbxThree = Null

(making sure that you change the names of the fields to the actual names)
 

Users who are viewing this thread

Back
Top Bottom