GoTo

Takes one parameter, a Label

Description:

Procedure execution jumps to the Label specified. A Label is a single word by itself on a line ending with a colon. Would typically be used with a If / Then so that the jump is only made in certain conditions. Labels and GoTo jumps should be reserved for use as error traps and error handling. Using GoTo jumps for program logic can lead to confusing source code that is difficult to follow and debug; Private Methods should be used instead.

Example:

LoadRecord "TableName", "RecordAlias"
...
myGoToLabel:
...
GoTo myGoToLabel: