MeldrethMan
Technical User
I'm using a master list of items to feed the dropdown lists of several fields in a form and its subform. This is so there's just one maintenance form where field names and list item names can be entered.
When a user adds a new item I'm using NotInList to open the maintenance form. When he closes this I want all the dropdown lists to requery, both in the form and its subform.
Using this in the maintenance form's Close event doesn't do the job
If CurrentProject.AllForms("frmClients").IsLoaded=True then
Forms!frmClients.Requery
Forms!sfmClients.Requery
End if
Do I have to add code lines to requery each of the dropdown fields individually or is there a way of doing this in one go, both in the form and the subform?