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.
[blue]Option Explicit
Private Const WshNormalNoFocus As Long = 4
Private Const WshNormalFocus As Long = 1
Private Sub Command1_Click()
CreateObject("wscript.shell").Run "notepad", WshNormalNoFocus, True
End Sub
[/blue]