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 Declare Function ShowWindow Lib "user32" _
(ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Private Sub Form_Open(Cancel As Integer)
Call ShowWindow(hWndAccessApp, SW_HIDE)
DoCmd.OpenForm "frm_main", windowmode:=acDialog
End Sub
Private Sub Form_Unload(Cancel As Integer)
Dim lngret As Long
lngret = ShowWindow(hWndAccessApp, SW_MAXIMIZE)
End Sub