The procedure for requesting AWR support has changed. Please read all about the new AWR product support process.

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Form 4: Public symbols defined by the module are only accessible from the same project.

Example

Code Block
languagevb
Option Base 1
Option Explicit

Sub Main
    Dim A
        Dim C(2) ' same as Dim C(1 To 2)
        Dim D(0 To 2)
    A = 1
    B = 2 ' B has not been declared
End Sub