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 & """"
 
Thank you that is exactly what i needed

fredg said:
Code the Combo Box AfterUpdate event:
Me.ComboName.DefaultValue = """" & Me!ComboName & """"
 

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