Access Controls

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

Guest

How do I lock an Access DB, so that it closes as soon as the user form closes?
 
Adam said:
How do I lock an Access DB, so that it closes as soon as the user form
closes?


You can close also the application using Unload Form Event with:

Docmd.Quit
 
In the Close Event of the form in question place the line:

Application.Quit

HTH
--
-Larry-
--

Adam said:
How do I lock an Access DB, so that it closes as soon as the user
form closes?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top