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 Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Private Declare Function GetWindowRect Lib "user32" _
(ByVal hwnd As Long, lpRect As RECT) As Long
Public Sub GetWindowPos(Optional frm As Form)
Dim WinRect As RECT
If frm Is Nothing Then
GetWindowRect hWndAccessApp, WinRect
Else
GetWindowRect frm.hwnd, WinRect
End If
With WinRect
Debug.Print "Left="; CStr(.Left); ", Top="; CStr(.Top); _
", Right="; CStr(.Right); ", Bottom="; CStr(.Bottom)
End With
End Sub