slam666 Posted April 5, 2005 Posted April 5, 2005 Hi, When you put a Return in a Func does the program continue to execute code after the Return or does it stop there and exit the func? Ex: Func A .... If $var = 1 Then Return ERROR Endif More code.... EndFunc Will the code exit the func if $var = 1 or will it continue to the end of the func then return ERROR
MHz Posted April 5, 2005 Posted April 5, 2005 Test() Func Test() MsgBox(0, 'Title', 'Does this work before Return?') Return SetError(1) MsgBox(0, 'Title', 'Does this work after Return?') EndFunc Hope this answers your question.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now