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 oWSH
Dim retVal
Set oWSH = WScript.CreateObject("WScript.Shell")
retVal = oWSH.Run("excel.exe " & Chr(34) & "D:\Docs\JaydipDB\OutputFiles\testExcelMacros.xls" & Chr(34) & " /x macTest1", 1, True)
Dim oWSH
Dim retVal
Set oWSH = WScript.CreateObject("WScript.Shell")
retVal = oWSH.Run("excel.exe " & Chr(34) & "D:\Docs\JaydipDB\OutputFiles\testExcelMacros.xls" & Chr(34) & " /x testExcelMacros.XLS'!macTest1", 1, True)
Dim X
Set X=CreateObject("Excel.Application")
Set W=X.Workbooks.Open("D:\Docs\JaydipDB\OutputFiles\testExcelMacros.xls")
X.Run "macTest1"
X.Run "macTest2"
X.Quit