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 strWhat() as string ' Dynamic array
Dim J as long
Redim strWhat(50) ' Allocate 50 to start
J = 0 ' J points to last used
Do ......
read, access data if end exit do
J = J + 1
If J > ubound(strWhat) then
Redim Preserve strwhat (2*J)
End if
strWhat(J) = somedata
Loop
Redim Preserve strWhat(J) ' Resize to actual
Dim ar as Variant
ar = array(array(1,2), array(3,4)