refresh combo box

  • Thread starter Thread starter Randal
  • Start date Start date
R

Randal

I have an issue with the combo box not showing recently added data. Is
there a way to ensure that the query associated with the combo box is
refreshed each time that you click on the drop down button?
 
Randal,

It should work to put code like this on the Enter event of the combobox...
Me.YourCombobox.Requery
 
Back
Top