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.
Option Explicit
Dim varX
Function MakeArray(ByVal lngSize)
Dim aryTemp(), lngI
ReDim aryTemp(lngSize)
For lngI = 0 To UBound(aryTemp)
aryTemp(lngI) = lngI
Next
MakeArray = aryTemp
End Function
varX = MakeArray(3)
MsgBox CStr(varX(2))