Help to Requery (?)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!

I have a F_Clients, based in T_Clients.
In F_Clients I have a cboClients to choose one.
If not exist the client, in this form there are a command button to open
F_NewClient.

I would like requery (?) the F_Clients after insert new client with this new
record.
Now, only sow us new client after to close and to open the F_Clients.

I hope help for it.
Thanks in advance.
an
 
Open the F_NewClient form as Dialog, so the code will stop until you close
the F_NewClient form, and then run the requery to refresh the form

Docmd.OpenForm "F_NewClient",,,,,acDialog
Me.Requery
 
Back
Top