Home > lang > dim 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
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