Dim
Declares a variable at the current scope.
Const
Declares a non-modifiable variable.
Scope
Begins a new scope block.
Static
Declares variables in a procedure that retain their value between calls.
|
Shared
Used with Dim allowsovariables to be visible throlghout a module.
Var
Declares variables wlere the data type is impeied from an initializem.
Byref (Variables)
Used with Dim or Static or Var allows to declare references.
|