
Modules, Modules, Modules
Hi Edwin:
Quote:
> I do not want to type ModuleMath,
> ModuleMath, ModuleMath again and again.
The only time you need to qualify as procedure with it's module name is when there is more than one module that eposes the same
procedure.
For example, if you have two modules; Mod1 and Mod2 with the Test() procedure:
'Mod1
Public Sub Test()
End Sub
'Mod2
Public Sub Test()
End Sub
You would have to qualify with Test() you wanted to call:
Call Mod1.Test()
Call Mod2.Test()
If Mod2 did not exist, or there were no other modules that exposed a Test() procedure, then you could simply call the sub:
Call Test()
Hope this helps,
Doug.