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 Sheet1 as object
Dim StrVal as string
dim i as long
set sheet1 = createobject("excel.application")
sheet1.workbooks.add
sheet1.workbooks.open filename:="c:\your.xls"
for i = 1 to 10
StrVal = sheet1.range("A" & i)
textbox1(i-1) = strval
next i
sheet1.activewindow.close
sheet1.quit
set sheet1 = nothing
[\code]