combo box

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

Guest

I have added code to a combo box to allow extra words to be added to it and
saved into a table list. I have added more combo boxes to my form taking
info from the same table. When I add a new item to the first combo box it
does not automatically appear in the other combo boxes. I have to close the
form and reopen it for the combo box to update.
 
After you add the record to the table, refresh the other combo's

Me.Combo2Name.Requery
Me.Combo3Name.Requery
Me.Combo4Name.Requery
 
Back
Top