6 lines
202 B
Text
6 lines
202 B
Text
'Specify that the array is dynamic and not static:
|
|
'$DYNAMIC
|
|
DIM SHARED myArray(-10 TO 10, 10 TO 30) AS STRING
|
|
REDIM SHARED myArray(20, 20) AS STRING
|
|
myArray(1,1) = "Item1"
|
|
myArray(1,2) = "Item2"
|