|
Dim
As
|
|
|
|
| varname
|
|
|
| Name of the variable. See standard variable naming conventions.
|
|
|
| type
|
|
|
| Type of the variable. See supported variable types.
|
|
|
|
|
| Variable declared with Dim does not change its type at run-time.
|
|
|
|
|
|
|
| If you don't specify variable type, Dim statement is ignored.
|
| You can declare only one variable per statement.
|
| The following examples illustrate the use of the Dim statement:
|
|
|
|
|