Combo Boxes

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

Guest

I have a combo box in my form that the user can select the name of a
department. The user will be entering in multiple records under the same
department. Is there anyway i can have the value in the combo box remain the
same until changed by the user?
 
I have a combo box in my form that the user can select the name of a
department. The user will be entering in multiple records under the same
department. Is there anyway i can have the value in the combo box remain the
same until changed by the user?

Code the Combo Box AfterUpdate event:
Me.ComboName.DefaultValue = """" & Me!ComboName & """"
 
Back
Top