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 xlApp As Excel.Application, xlWbk As Excel.Workbook
Set xlApp = CreateObject("Excel.Application")
xlApp.Workbooks.Open "C:\aTest.xls"
Set xlWbk = ActiveWorkbook
With xlWbk.Worksheets(1)
.Cells(2, 2).Value = TextBox1.Text
End With
xlWbk.Close
Set xlWbk = Nothing
Set xlApp = Nothing
With xlWbk.Worksheets(1)
TextBox1.Text = .Cells(2, 2).Value
End With