refresh combo box

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?
 
S

Steve Schapel

Randal,

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