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.
Sub Macro2()
'
' Macro2 Macro
' Macro recorded 12/19/01 by ISA
'
Selection.WholeStory
Selection.Copy
Application.Run MacroName:="RunNotepad"
End Sub
Sub RunNotepad()
RetVal = Shell("C:\WINDOWS\notepad.EXE", 1) ' Run notepad.
End Sub