Global Methods

jshailes

New member
Local time
Today, 20:15
Joined
May 17, 2007
Messages
6
Hello,

I'm having some trouble accessing a global module method from a class I have created.


modGlobal.bas
Code:
public sub myMethod()
   doXYZ
end sub

myClass.cls
Code:
sub test()
   call myMethod()
end sub

Has anyone got any ideas as to how I might go about making the method accessible from within the class?

Many thanks in advance,

James
 

Users who are viewing this thread

Back
Top Bottom