C73N6‖

aAijE‖Public Statement

f5QpN‖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.

MQDAq‖Syntax:


tNoNq‖Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]

GEXZU‖Example:


Public iPublicVar As Integer
Sub ExamplePublic
    iPublicVar = iPublicVar + 1
    MsgBox iPublicVar
End Sub