|
Variable assignment
A
value expression can be assigned to a variable only if it is of a
data type that is compatible with the variable. You can't assign
string expressions to numeric variables, and you can't assign
numeric expressions to string variables. If you do, an error occurs
at runtime.
Examples:
intiIndex
=
10
stringa
a
=
Mid("Hello
world",
0,
5)
|