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.
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
Private Sub FormLoad()
ShellExecute Me.Hwnd, "open" "file path", "","", 1
End Sub
Shell "C:\Windows\notepad.exe c:\test.txt", vbMaximizedFocus