Combo Boxes

M

MimiSD

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?
 
F

fredg

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 & """"
 
Top