Const
The Const statement allows you to define constant values
that are used throughout your script. Unlike variables, these
named values cannot change their value ever.
Constants are commonly used to define universal constants such as
the value of PI or for configuration parameters for a single script.
Const PI = 3.14159 Const FONTCOLOR = "#FFFFCC"
|
 |

|