G Guest Mar 15, 2007 #1 how to dynamic assign two dimensions array size say Dim myArray(x, y) as Integer
A Alexey Smirnov Mar 15, 2007 #2 how to dynamic assign two dimensions array size say Dim myArray(x, y) as Integer Click to expand... There is the ReDim statement to declare the size of the array. Dim myArray(,) As Integer ReDim myArray(5,5)
how to dynamic assign two dimensions array size say Dim myArray(x, y) as Integer Click to expand... There is the ReDim statement to declare the size of the array. Dim myArray(,) As Integer ReDim myArray(5,5)