Const Statement [Runtime]/text/sbasic/shared/03100700.xhpSun Microsystems, Inc.converted from old format - fpeConst statementConst Statement [Runtime]Defines a string as a constant.Syntax:Const Text = ExpressionParameters:Text: Any constant name that follows the standard variable naming conventions.A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:CONST ConstName=ExpressionThe type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it.Example:Sub ExampleConstConst iVar = 1964Msgbox iVarConst sVar = "Program", dVar As Double = 1.00Msgbox sVar & " " & dVarend sub