When I go to my next record combo box value stays in the box

S_DeLaire_2002

New member
Local time
Today, 13:09
Joined
Feb 6, 2002
Messages
9
When I go to my next record combo box value stays in the box. How do I make it so that when I go to the next record it resets?
 
Since the combobox is unbound, you need to fill it when the current record changes. Access only automaticaly takes care of bound controls. Put the code into the form's Current event.
 
You need to add the following code to the Form's On Current Event.

Private Sub Form_Current()
yourcomboboxname = fieldname
End Sub
 

Users who are viewing this thread

Back
Top Bottom