>
lang
>
dim
Previous
Next
Edit
Rename
Undo
Refresh
Search
Administration
Documentation
History
DIM
This keyword is used for declaring local variables.
All DIM declarations must be in the
FUNCTION
or
SUB
before the first executable command.
Example
DIM fTimeDiff2 AS Float
DIM iTest AS Integer
DIM iK[9] AS Integer ' ik[0] to ik[8]
DIM shX[3,3] AS Short
DIM date1 AS Date
iTest = 8
See also
Local Variable Declaration
Naming Conventions