The procedure for requesting AWR support has changed. Please read all about
the new AWR product support process.
...
Form 4: Public symbols defined by the module are only accessible from the same project.
Example
Code Block | ||
---|---|---|
| ||
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 |