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.
Public Function StoringLoopValue()
Dim StoreLoopValue(15) As Integer
For I = 1 To 16
StoreLoopValue(I - 1) = I
Next I
For I = 0 To 15
MsgBox StoreLoopValue(I)
Next I
End Function
Public Function StoringLoopValue()
Dim StoreLoopValue(15) As String
For I = 1 To 16
StoreLoopValue(I - 1) = me.sometext
Next I
For I = 0 To 15
MsgBox StoreLoopValue(I)
Next I
End Function