Site hosted by Angelfire.com: Build your free website today!
NAME
  GOTO Statement

SYNOPSIS
  GOTO line
      o line    The label or number of the line to execute next.
      o DO...LOOP, SELECT CASE, IF...THEN...ELSE, SUB, and FUNCTION provide
        better ways to control the flow of your program.
      o GOTO is also used as a keyword in the ON ERROR statement.

DESCRIPTION
  Branches to a specified line.

SEE ALSO
  DO...LOOP FUNCTION IF...THEN...ELSE ON ERROR ON...GOTO SELECT CASE SUB