Master Database Save on Quit

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

Guest

I have a program with multiple forms to enter data into different tables.

Some times the user leaves the form open and goes to a different form.

Then Quits the program. This sequence sometimes fails to post to the table
as the form was never closed.

Is there some VBA command that will close all open forms or post the data so
data is not lost when the person exits the program
 
Each form is closed by Access before it closes. You could code the Close
event of all your forms to perform any updates that are not complete.
 
Back
Top