I have a combo box based off of a query of a table that I'm trying to tell to requery the list it provides each time it's opened. The user may need to add new records to the table sporatically (through a pop up form I've created) so I need for them to be able to have live data each time they click the drop down of the combobox. I have the following code on the "on got focus" property of the combobox but It only seems to work after I've add a new record directly into the table. If I attemt to add a record through a form that pops up, then the list doesn't update.
Any ideas?
Thanks!
Any ideas?
Thanks!
Code:
Private Sub cboPlantManager_GotFocus()
DoCmd.Requery "cboPlantManager"
End Sub