PRIVATE
Specifies a procedure having internal linkage
Syntax:
Description:
In procedure definitions, Private specifies that a procedure has internal linkage, meaning it's name is not visible to external modules.
The
Option Private statement allows procedures to be defined with internal linkage by default.
Examples:
'e.g.
Private Sub i_am_private
End Sub
Sub i_am_public
End Sub
Differences from QB:
See also:
There are no comments on this page. [Add comment]