Question About Multidimensional Arrays

  • Thread starter Thread starter WStoreyII
  • Start date Start date
W

WStoreyII

My question is how exactly do multi dimension arrays works for instance if i
was to delcare an array

Dim MyArray(4,9) as integer
this would give me 5 columns and 10 rows and so i would have a total of 50
cells to work with does the computer view this like a grid or is it more
like this

0 to 4
0 to 9 sorta like sub one dimensional arrays?????

WStoreyII
 
* "WStoreyII said:
My question is how exactly do multi dimension arrays works for instance if i
was to delcare an array

Dim MyArray(4,9) as integer
this would give me 5 columns and 10 rows and so i would have a total of 50
cells to work with does the computer view this like a grid or is it more
like this

0 to 4
0 to 9 sorta like sub one dimensional arrays?????

It's like a grid.
 
Back
Top