Does Access VBA use a RETURN command anywhere, in order to return a value back to the procedure which called a user-defined function for example?
I am looking at code which has no RETURN mVar commands anywhere. I see what appears to be GLOBAL declarations of variables with the Dim command and then those variables are given values in various procedures or functions and although the value isn't RETURNed, it seems that by being GLOBAL, the value is defined successfully and use throughout.