Combo Box Update

  • Thread starter Thread starter Jenn
  • Start date Start date
J

Jenn

I have a combo box on my form. When I want to add a new
item to the combo box I have a button that opens the
related table. I then add the new item. However, the
new item isn't showing up in my combo box after I close
the related table. What should I do? Thanks so much!
 
Requery the combo box as you close the second form into which you add the
new item. Use the second form's OnClose Event:

Private Sub Form_Close()
Forms!FirstFormName!CombBoxName.Requery
End Sub
 
Back
Top