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 ObjXL As Excel.Application
'create an instance of excel
Set ObjXL = CreateObject("excel.application")
'open a workbook
ObjXL.Workbooks.Open FileName:="C:\SomeWorkBook.xls"
ObjXL.Workbooks.Close 'Close the file
ObjXL.Quit 'Close the instance of excel in memory