Using Procedures and Functions/text/sbasic/shared/01020300.xhpproceduresfunctions;usingvariables;passing to procedures and functionsparameters;for procedures and functionsparameters;passing by reference or valuevariables;scopescope of variablesGLOBAL variablesPUBLIC variablesPRIVATE variablesfunctions;return value typereturn value type of functionsUsing Procedures and FunctionsThe following describes the basic use of procedures and functions in $[officename] Basic.When you create a new module, $[officename] Basic automatically inserts a SUB called "Main". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB.Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library.Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces.One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project.Passing Variables to Procedures (SUB) and Functions (FUNCTION)Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:SUB SubName(Parameter1 As Type, Parameter2 As Type,...)Program codeEND SUBThe SUB is called using the following syntax:SubName(Value1, Value2,...)The parameters passed to a SUB must fit to those specified in the SUB declaration.The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:FUNCTION FunctionName(Parameter1 As Type, Parameter2 As Type,...) As TypeProgram codeFunctionName=ResultEnd FunctionThe FUNCTION is called using the following syntax:Variable=FunctionName(Parameter1, Parameter2,...)You can also use the fully qualified name to call a procedure or function: Library.Module.Macro() For example, to call the Autotext macro from the Gimmicks library, use the following command: Gimmicks.AutoText.Main()Passing Variables by Value or ReferenceParameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value.If you want to pass a parameter by value insert the key word "ByVal" in front of the parameter when you call a SUB or FUNCTION, for example:Result = Function(ByVal Parameter)In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself.Scope of VariablesA variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a "local" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited.Declaring Variables Outside a SUB or FUNCTIONGLOBAL VarName As TYPENAMEThe variable is valid as long as the $[officename] session lasts.PUBLIC VarName As TYPENAMEThe variable is valid in all modules.PRIVATE VarName As TYPENAMEThe variable is only valid in this module.DIM VarName As TYPENAMEThe variable is only valid in this module.Example for private variablesEnforce private variables to be private across modules by setting CompatibilityMode(true).from i17948, see i54894REM ***** Module1 *****Private myText As StringSub initMyTextmyText = "Hello"print "in module1 : ", myTextEnd SubREM ***** Module2 *****'Option ExplicitSub demoBugCompatibilityMode( true )initMyText' Now returns empty string' (or rises error for Option Explicit)print "Now in module2 : ", myTextEnd SubSaving Variable Content after Exiting a SUB or FUNCTIONSTATIC VarName As TYPENAMEThe variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION.Specifying the Return Value Type of a FUNCTIONAs with variables, include a type-declaration character after the function name, or the type indicated by "As" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:Function WordCount(WordText as String) as Integer