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 GetSystemDirectory Lib "kernel32" _
Alias "GetSystemDirectoryA" ( _
ByVal lpBuffer As String, _
ByVal nSize As Long) As Long
Function SystemDir() As String
Dim strSys As String, lRet As Long
strSys = Space(255)
lRet = GetSystemDirectory(strSys, 255)
SystemDir = Left$(strSys, lRet)
End Function