0 Members and 1 Guest are viewing this topic.
:..title
:.TEST:SayHello()::prgmSUB
:..:Lbl SayHello:Disp "Hello world!":Return
Possible reasons of why it would quit instead of return to main execution :You use Returnr instead of Return at the end of the subroutine.You do Goto Subroutine instead of Subroutine().
:.header:ACT():other code:prgmLIB:..:Return:Lbl ACT:r1->strg111
prgmLIB should be at the bottom of your source. Don't put a return in the end of it, but in the beginning. Also it should start with "..", not ".", although that's not the problem.Like so :Code: [Select]:.header:ACT():other code:prgmLIB:..:Return:Lbl ACT:r1->strg111