History |
Option (BASIC command)
Purpose
Sets BASIC interpreter options for this application.
Syntax
Option Base Index
Example
Option Base 0
...
Dim MyArray(10) As Integer 'creates a 10-element array indexed from 0 to 9
Option Base 1
...
Dim MyArray(10) As Integer 'creates a 10-element array indexed from 1 to 10
| ||||||