Quote Originally Posted by med2007 View Post
Thanks for that I'll check it out...meantime is it allowed to have a GOTO inside a subroutine to exit that routine before the RETURN?
Or can I just say IF so-and-so THEN RETURN?
Rgds
Mike
It's allowed and it'll compiled, but it'll probably bite you in the rear later on 'cause you'll probably end up with a stack overflow that you'll have a hard time tracing.

The second option works just fine, the IF/THEN-RETURN type thing that is...