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.
Option Explicit
Private Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation _
As String, ByVal lpFile As String, ByVal lpParameters As String, _
ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Public Function Navigate(strUrl As String) As Long
Dim hWnd As Long
Navigate = ShellExecute(hWnd, vbNullString, strUrl, vbNullString, _
vbNullString, vbNormalFocus)
End Function