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.
Dim RetVal As Long
Dim WSH As IWshShell
Dim WaitForTermination as Boolean
Dim CommandLine as String
Set WSH = New IWshShell_Class
CommandLine = "<Your Program Pathname Here>"
WaitForTermination = True
RetVal = WSH.Run(CommandLine, vbNormalFocus, WaitForTermination)
MsgBox "Process returned: " & RetVal
Set WSH = Nothing
Private Declare Sub ExitProcess Lib "kernel32" (ByVal ReturnCode As Long)
ExitProcess LongNumberValue