Access Object Methods

Many of the objects support various methods in addition to their properties. These methods may be accessed from BASIC code via the ObjectCode.method_name syntax. This means you can see what properties and methods are available for any given object by typing the object’s Object Code in the VBS Mini-Editor followed by a period. As soon as the period is typed, a mini wizard will pop up showing the available methods and properties for that object.

So if you had a text object named "Text1" you could type "Text1" followed by a period and a list of available methods or properties for a text object would appear.

Variables declared within an event handler function (via the BASIC Dim var_name as var_type syntax) are in scope only during that event handler function. There will undoubtedly arise situations when you would like to declare variables, functions, or subroutines that are accessible from all BASIC code in a template or form—variables with global scope for a particular report. The template and form editors provide a place to make these declarations.

More:

Declare Global Variables Using the LocalVariables Property

Declare/Define Variables, Functions, or Subroutines