Pull Down List Addition

  • Thread starter Thread starter Chris B
  • Start date Start date
C

Chris B

I have a form that has vendors name pull down list. By
the users request, I have an add new vendor button that
opens a vendors form in the add record mode. The problem
I have is that after adding the record, I can not get the
combo box list to update and point to the new record just
added on the same record. Please help

Chris Beardsley
 
Hi Chris,

at the end of the code behind your CommandButton add the
line:

Me!ComboBoxName.Requery

where ComboBoxName is the name of your ComboBox.

hth

chas
 
Back
Top