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.
sub SomeSub()
dim myArray()
i = 0
for k = 1 to SomeLimit
' do stuff
if (SomeExpression) then
redim Preserve myArray(i)
myArray(i)= SomeValue
i = i + 1
end if
next k
end sub
Dim iArray(3, 5) As Integer
counter = 0
iArray(2, 3) = 1
For Each x In iArray
If x > 0 Then counter = counter + 1
Next x
MsgBox counter