J John Verderber Mar 21, 2005 #1 How would you delare a 2 dimensional array with 3 rows and 3 columns. I know this is really basic but I am just starting out. Derb
How would you delare a 2 dimensional array with 3 rows and 3 columns. I know this is really basic but I am just starting out. Derb
H Herfried K. Wagner [MVP] Mar 21, 2005 #2 John Verderber said: How would you delare a 2 dimensional array with 3 rows and 3 columns. I know this is really basic but I am just starting out. Click to expand... \\\ Dim aint(2, 2) As Integer /// will create an array with indices (0, 0) through (2, 2).
John Verderber said: How would you delare a 2 dimensional array with 3 rows and 3 columns. I know this is really basic but I am just starting out. Click to expand... \\\ Dim aint(2, 2) As Integer /// will create an array with indices (0, 0) through (2, 2).