OtherNaming Conventions
This is an example of a local string:
Dim sCustomerName As String
This is an example of a module-level integer:
Dim nmCustomerId As Integer
Here is a global-level Double defined in the module Mi:
Public dPuMiCustomerNumber As Double
Here is a global-level Double; the module identifier is not defined or else resident in the project-wide globals module.
Public dPuCustomerNumber As Double
This is a global array of Longs. The module identifier is not defined or else resident in the project-wide globals module.
Public alPuAmounts(1 to 25) As Long
This is a global database. The module identifier is Dt:
Public dbPuDtCustomers As Database
This shows a call to an external DLL function; the result is assigned to a global variable resident in the project-wide global's module.
bPuRetCode = bDllIsShareLoaded ()