


Format:
goto LABEL;
This command causes execution to jump to LABEL. The LABEL can be anywhere in the script file. If LABEL does not exist, PC Access reports a script compile error when you start the script.
Example:
// Cause the script file execution to continue with the first script
// command in the labeled block LOGIN.
goto LOGIN;


