Info from a modal form to a main form

  • Thread starter Thread starter Alain
  • Start date Start date
A

Alain

Hi To all,

I would like to know how I can do this, or is it feasable,
I have a main form from which I have a button that pop up a modal form so
the user can input info for a client ( info stored in a seperate table)
What I want to do is when I close the pop up window, the information will
populate the main form with the newly entered client info.
The query I use to populate my main form included my client table, it seem
that i am missing some step somewhere
Need help to understand so I can find a solution

My pop up form is connected directly to the table

Thanks

Alain
 
You'll need to requery your main form, perhaps in the Unload event of your
pop-up?
Forms!MainForm.Requery
 
Back
Top