{currenthelptext} {product} {helptype} {viewcore}
Example - ReDim Statement
Sub Main
Dim TestArray() As Integer
Dim I
ReDim TestArray(10)
For I = 1 To 10
TestArray(I) = I + 10
Print TestArray(I)
Next I
End Sub