Call Statement [Runtime]/text/sbasic/shared/03090401.xhpSun Microsystems, Inc.converted from old format - fpeCall statementCall Statement [Runtime]Transfers the control of the program to a subroutine, a function, or a DLL procedure.Syntax:[Call] Name [Parameter]Parameters:Name: Name of the subroutine, the function, or the DLL that you want to callParameter: Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing.A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the Declare-Statement.Example:Sub ExampleCallDim sVar As StringsVar = "Office"Call f_callFun sVarend SubSub f_callFun (sText as String)Msgbox sTextend sub