how to define an array?
is the first place in the array is
array[0] or array[1]?
Printable View
how to define an array?
is the first place in the array is
array[0] or array[1]?
In a standard array, the first variable starts at 0 like so:
Array(15) provides space for 0 - 15 vars. (actually 16 since 0 is considerd a spot)
But...
If you use the Option Base 1 statement in your General Declarations, then
Array(15) provides space for 1 - 15 vars. (True 15)
hope it helps...