synchronized update of dropdown list

  • Thread starter Thread starter Bonobo
  • Start date Start date
B

Bonobo

I have 2 tables, Document and User, maintained with forms.
In the form Document, I have a field User with a dropdown list linked to the
User table. Next to the dropdown list I have a button opening the form User
to create a new User.
What shall I do to have the dropdown list refreshed with the new User?
 
you can add code to the User form's Close event, to requery the combobox
control in the Document form. but, suggest you read up on the NotInList
Event topic in Help - you may find that you can get the effect you want
without using a separate command button and requery command.

hth
 
Back
Top