Hello,
I'm having some trouble accessing a global module method from a class I have created.
modGlobal.bas
myClass.cls
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
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