how to dynamic assign two dimensions array size

  • Thread starter Thread starter Guest
  • Start date Start date
how to dynamic assign two dimensions array size

say
Dim myArray(x, y) as Integer

There is the ReDim statement to declare the size of the array.

Dim myArray(,) As Integer
ReDim myArray(5,5)
 
Back
Top