Public Statement/text/sbasic/shared/03103400.xhpPublic statement
Public Statement
Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules.
Syntax:
Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]
Example:
Public iPublicVar As IntegerSub ExamplePublic iPublicVar = iPublicVar + 1 MsgBox iPublicVarEnd Sub