Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub cmdExitDatabase_Click()
On Error GoTo Err_cmdExitDatabase_Click
' First close the form
DoCmd.Close
' Exit database and quit access
DoCmd.Quit
Exit_cmdExitDatabase_Click:
Exit Sub
Err_cmdExitDatabase_Click:
MsgBox Error$
Resume Exit_cmdExitDatabase_Click
End Sub