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 OpenWord(strFilename)
Set objWord = CreateObject("Word.Application")
objWord.Documents.Open(strFileName)
objWord.Visible = True
End Sub
Sub OpenPPT(strFileName)
Set objPPT = CreateObject("PowerPoint.Application")
objPPT.Activate
objPPT.Presentations.Open(strFileName)
objPPT.Visible = True
End Sub
Sub OpenXL(strFileName)
Set objXL = CreateObject("Excel.Application")
objXL.Workbooks.Open(strFileName)
objXL.Visible = True
End Sub
<A onClick="Call OpenWord('autocontrols.doc')">Automatic Controls</A>