Anybody any idea what the difference between a Global variable and a Public variable is? As I understand it:
Dim - available only within the current procedure
Private - available to all procedures in the current module
Public - available to all procedures in all modules
Global - available to all procedures in all modules.
So what's the difference between Public and Global??
Ed Metcalfe.
Dim - available only within the current procedure
Private - available to all procedures in the current module
Public - available to all procedures in all modules
Global - available to all procedures in all modules.
So what's the difference between Public and Global??
Ed Metcalfe.