Dim Declares a variable at the current scope. ConstDeclares a non-modifiable variable. ScopeBegins a new scope block. StaticDeclares variables in a procedure that retain their value between calls. | Shared Used with Dim allows variables to be visible throughout a module. VarDeclares variables where the data type is implied from an initializer. Byref (Variables) |