Non-modifiable variable declaration.
Syntax
Const symbolname1 [AS DataType] = value1 [, symbolname2 [AS DataType] = value2, ...]
or
Const [AS DataType] symbolname1 = value1 [, symbolname2 = value2, ...]
Description
Example
Const Red = RGB(252, 2, 4)
Const Black As UInteger = RGB(0, 0, 0)
Const Text = "This is red text on a black bkgnd."
Locate 1, 1
Color Red, Black
Print Text
Sleep
End
Differences from QB
See also