Clearing Drop Down Boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have numerous drop down boxes in a "Student Input Form" that get their
values from the table 'Students'. When I move to the next record, the drop
down boxes that I have selected and therfore have inserted in the table
'Students' are correct. Those drop boxes that I did not used and would not
have placed any value in the Students table, show the last value from the
previous record, even though it is not sorted and this is confusing to the
data input volunteer. I need the boxes to clear or resort to a clear record.
Can you help me?
 
Use the Current event of the form to set the unbound combos to Null:

Private Sub Form_Current()
Me.[Combo1] = Null
'etc.
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top