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.
DoCmd.OpenForm "Background", , , , , acHidden
Cancel = True
MsgBox "Please use the Exit button to close the application"
RunCommand acCmdExit
(In the Declarations section:)
Public AllowShutdown As Boolean
(At the start of the Form_Unload event procedure:)
If AllowShutdown Then Exit Sub
Form_Background.AllowShutdown = True