Hello,
I'm having some trouble accessing a global module method from a class I have created.
modGlobal.bas
public sub myMethod()
doXYZ
end sub
myClass.cls
sub test()
call myMethod()
end sub
Has anyone got any ideas as to how I might go about making the method accessible from...