Code Module

Group: Declaration

Description:
A Code module implements a code library.

See Also: Class Module, Object Module, Uses.

Example:

'A.WWB

'#Uses "Module1.BAS"

Sub Main

Debug.Print Value '"Hello"

End Sub

 

'Module1.BAS

'File|New Module|Code Module

'Edit|Properties|Name=Module1

Option Explicit

Private mValue As String

Property Get Value() As String

Value = mValue

End Property

'this sub is called when the module is first loaded

Private Sub Main

mValue = "Hello"

End Sub