D Danden Registered User. Local time Today, 14:38 Joined Jun 10, 2013 Messages 26 Aug 26, 2013 #1 How can I close database if I click on the small close cross in the upper right top corner on my logon form?
How can I close database if I click on the small close cross in the upper right top corner on my logon form?
M Monty251 New member Local time Today, 22:38 Joined Aug 23, 2013 Messages 5 Aug 26, 2013 #2 Inside the on close event handler put: Application.Quit() e.g. Private Sub Form_Close() Application.Quit() End Sub Click to expand...
Inside the on close event handler put: Application.Quit() e.g. Private Sub Form_Close() Application.Quit() End Sub Click to expand...