home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / doshelp / helpsb.zoo / help / batch / goto / help.hlm < prev   
Encoding:
Text File  |  1989-01-01  |  768 b   |  16 lines

  1. GOTO
  2.  
  3. The GOTO internal command is used with BATCH processing to control the command 
  4. flow.  The command following the specified label will be the next one executed 
  5. in the BATCH file.  GOTO cannot be executed directly from the keyboard. 
  6.  
  7.     GOTO <label>
  8.  
  9. <label> must be defined elsewhere in the BATCH file, on a line beginning with a
  10.     colon (:), followed by up to eight characters, usually just letters and
  11.     numbers. It can also contain just about any other characters, except for
  12.     DOS special characters. Labels can be longer than 8 characters, but only
  13.     the first 8 are used. Upper and lower case don't matter; LABEL1 is  
  14.     equivalent to label1. The GOTO command can appear before or after the line
  15.     defining the <label>.
  16.