Home / lang / dim 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
fr  de  es  it  nl  pl  pt  pt_BR  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
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.

Examples

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