Access Controls

A

ALESSANDRO Baraldi

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
 
L

Larry Daugherty

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?
 
Top