home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / tt2man.zip / ttautom.doc < prev    next >
Text File  |  1993-12-10  |  11KB  |  213 lines

  1.  
  2.                              TABLE OF CONTENTS                              
  3.  
  4.  
  5.           D. Appendix D - AUTOPILOT Messages
  6.  
  7.                      D. Appendix D - AUTOPILOT Messages                     
  8.  
  9.  
  10. (AP0001)  The  Script File name must be specified.  For  example:   TT2PILOT
  11.          FILENAME.EXT
  12.          
  13.          The name of the script was not specified on the command line.
  14. (AP0002) The Script File could not be found.
  15.          
  16.           The script file was not found. If there is no directory  or  drive
  17.            specification on the script file, the SCRIPT  DIRECTORY  will  be
  18.          searched.
  19. (AP0003)  Invalid token. An element that cannot be classified as any of  the
  20.          valid lexical constructs
  21.          
  22.          (literal, identifier, etc.) has been encountered.
  23.          
  24.           This may occur if an invalid character was found in the script  or
  25.          a token was delimited incorrectly.
  26. (AP0004) An unbalanced comment (a "/*" without an associated "*/") has  been
  27.          encountered
  28. (AP0005) Duplicate label.
  29.          
  30.           Labels must be unique. Remember, only the first 8  characters  are
  31.          significant.
  32. (AP0006) The INCLUDE file specification must be a string literal.
  33.          
  34.          The correct format is: INCLUDE "filename.ext"
  35. (AP0007) INCLUDE file may be nested no more than 4 levels.
  36.          
  37.          This may occur if an INCLUDE file also INCLUDEs itself.
  38. (AP0008) The INCLUDE file could not be found.
  39.          
  40.           If no directory or drive is specified, the same directory  as  the
  41.          script is searched.
  42. (AP0014) Invalid expression.
  43.          
  44.           This may occur when there is an operator without a valid  operand.
  45.          For example: SET x = y + ,7. The comma is not a valid operand.
  46. (AP0015) Invalid conditional expression.
  47.          
  48.             This may occur when there is a relational operator  with  out  a
  49.           valid operand. For example: IF x = y AND IF. The second IF is  not
  50.          a valid operand.
  51. (AP0016)  Invalid  USING clause. The correct format is:  USING  <argument-1>
  52.          [,<argument-2> ... ]
  53.          
  54.             This may occur if you have a USING without any  arguments  or  a
  55.          comma without a following argument.
  56. (AP0017) The syntax of the AT/FROM clause is AT/FROM <row>, <col>.
  57.          
  58.          The statement in error contains an invalid clause. <row> and  <col>
  59.          must both be specified and have valid numeric values.
  60. (AP0018) The statement in error is not a valid command.
  61.          
  62.          An attempt to execute an invalid statement occurred This may  occur
  63.           when the previous statement was incorrectly formatted  causing  it
  64.             to prematurely end. For example: WAIT FOR "A  String"  AFTER  20
  65.           Seconds GOTO label. AFTER would terminate the WAIT. When the  WAIT
  66.           is completed the script would try to execute AFTER as if it was  a
  67.          statement.
  68. (AP0019) Invalid use of a LABEL.
  69.          
  70.          LABELs cannot be used in expressions or in conditions.
  71. (AP0029) The 3270 PC Control Program is not running.
  72. (AP0030) The syntax of the CONNECT or JUMP statement is incorrect.
  73.          
  74.           The correct format is: { CONNECT } [TO] { HOST <session number>  }
  75.          { JUMP } { NOTEPAD <session number> } { WSCTL }
  76. (AP0035) The format of the DISPLAY statement is: DISPLAY <string> [AT  <row>
  77.          <col>] A missing or invalid <string> value was specified.
  78. (AP0036)  The format of the LOCATE statement is: LOCATE PC CURSOR [AT  <row>
  79.          <col>] The keyword PC CURSOR is missing.
  80. (AP0040) The syntax of the WAIT statement is incorrect
  81.          
  82.           The correct format is: WAIT <timeval> or WAIT { FOR  <string>  [AT
  83.           <row> <col>]} AFTER {TIMEOUT } <statement> { UNTIL  <condition>  }
  84.          {<timeval>}
  85. (AP0041) An invalid or missing time value was specified in a WAIT statement.
  86. (AP0042) The FOR keyword was not specified in a LOOK statement.
  87. (AP0043)  The  format  of the LOOK statement is:  LOOK  FOR  <string-1>  [AT
  88.           <row-1> <col-1>] [,<string-2> [AT <row-2> <col-2>]...]  A  missing
  89.          or invalid <string> value was specified.
  90. (AP0044)  An invalid search string was specified. An invalid  search  string
  91.          was specified. The * ? and @ characters all have a special  meaning
  92.          and must be used correctly.
  93.          
  94.            This usually occurs when an "*" or a "@" is the  first  character
  95.            the search string or when it follows another "*" or  "@".  Use  a
  96.              leading "\" to override the  special  characters  meaning.  For
  97.          example, to search for "***" the search string should be "\*\*\*".
  98. (AP0045) An invalid field length was specified in a PROMPT statement.
  99. (AP0046)  The  format  of the CLS statement is: CLS [FROM  <row>  <col>  [TO
  100.          <row> <col>] ] CLS [FROM <row> <col> [TO <row> <col>] ] An  invalid
  101.          position was specified.
  102.          
  103.          This may occur if the position was incorrectly formatted or if  the
  104.          value was not on the screen.
  105. (AP0050) A value was missing from a DEPENDING ON clause.
  106. (AP0051) A label was missing in a PERFORM or GOTO statement.
  107. (AP0052)  PERFORM and WHILE statements may be nested up to a maximum  of  16
  108.          levels. This maximum has been exceeded.
  109. (AP0055)  The  keyword SCRIPT, DOS, or PROGRAM must be specified  in  a  RUN
  110.          statement.
  111. (AP0056)  The RUN statement is missing the name of the program or script  to
  112.          be executed.
  113. (AP0060)  The  format  of the STORE statement  is:  STORE  <data-string>  AS
  114.          <key-string>
  115.          
  116.          This may occur if the specified filename is invalid.
  117. (AP0063) Missing or invalid identifier in the GLOBAL statement.
  118. (AP0065) The format of the SIGNAL statement is: SIGNAL { TIMEOUT } {  ESCAPE
  119.          } { ERROR } A valid condition was not specified.
  120. (AP0066)  The  format of the ON statement is: ON { TIMEOUT } { <label>  }  {
  121.            ESCAPE } { RESET } { ERROR } { ON } { KEY ... } { OFF }  A  valid
  122.          condition was not specified.
  123. (AP0067)  The  format of the ON statement is: ON { TIMEOUT } { <label>  }  {
  124.            ESCAPE } { RESET } { ERROR } { ON } { KEY ... } { OFF }  A  valid
  125.          <label> or keyword was not specified.
  126. (AP0068)  The  format  of  the RESUME statement is: RESUME  {  TIMEOUT  }  {
  127.           <label> } { ESCAPE } { RETRY } { ERROR } { NEXT } { KEY } A  valid
  128.          condition was not specified.
  129. (AP0069)  The  format  of  the RESUME statement is: RESUME  {  TIMEOUT  }  {
  130.           <label> } { ESCAPE } { RETRY } { ERROR } { NEXT } { KEY }  Missing
  131.          a valid <label> or the keyword RETRY, or NEXT.
  132. (AP0070)  The  format  of  the     SET  statement  is:  SET  <identifier>  =
  133.          <expression>. An invalid format was specified.
  134. (AP0071)  An  invalid row was specified in a SET MSGLINE or SET  TRACE  LINE
  135.          statement. The value of row must be an integer between 1 and 25.
  136. (AP0072)  An invalid time value was specified in a SET MAXWAIT or SET  TRACE
  137.          DELAY statement.
  138. (AP0073) SET DISPLAY/CAPTURE/TRACE/KEEP must be followed by an ON or an OFF.
  139. (AP0080)  The  format  of  the  SEND  statement  is:  SEND  {<string>}  [  ,
  140.            {<string>} ] {<key> } [ , {<key> } ] An invalid  <key>  (for  the
  141.          current emulation) was specified.
  142. (AP0081) The format of the SEND statement is: SEND {<string>} [ ,  {<string>
  143.            } ] {<key> } [ , {<key> } ] The <string> or <key> value  was  not
  144.          specified.
  145. (AP0082) The terminal is not responding on a SEND
  146.          
  147.          This may occur if the Host computer is down.
  148. (AP0085) The object of a DIM statement must be a valid identifier.
  149. (AP0086) Invalid subscript.
  150.          
  151.          The subscript may be out of range.
  152. (AP0087)  An  invalid  key list was specified. The correct  format  is:  KEY
  153.          value-1, value-2, ...
  154. (AP0088) Invalid DIR command
  155. (AP0090) Invalid file number (must be in the range 1 to 16)
  156. (AP0091) The file is not open.
  157. (AP0092)  The syntax of the OPEN statement is:  OPEN <filespec>  FOR  <mode>
  158.               AS <filenum>. The  statement  in  error  contains  an  invalid
  159.          <filespec>.
  160. (AP0093)  The syntax of the OPEN statement is:  OPEN <filespec>  FOR  <mode>
  161.             AS <filenum>. 2 The value of <mode> may  be  INPUT,  OUTPUT,  or
  162.          APPEND. The statement in error contains an invalid <mode>.
  163. (AP0094) The syntax of the OPEN statement is: OPEN <filespec> FOR <mode>  AS
  164.          <filenum>. The statement in error contains an invalid <filenum>.
  165. (AP0095) The file is already open.
  166.          
  167.               You cannot assign a file to a  file  number  that  is  already
  168.          associated with an open file.
  169. (AP0096)  The syntax of the WRITE statement is: WRITE <filenum>  string1  [,
  170.          string 2 ... ]. An invalid <string> was specified.
  171. (AP0097) The syntax of the READ statement is: READ <filenum> iden1 [,  iden2
  172.          ... ] An invalid <iden> was specified.
  173. (AP0323) File Already Open
  174.          
  175.          The filenum value specified in an OPEN Statement referenced a  file
  176.          already open.
  177. (AP0352) Invalid Identifier in Read
  178.          
  179.          An identifier specified on a READ Statement is invalid.
  180. (AP0400) The syntax of the STR LEFT function is: STR LEFT(<string>,<number>)
  181. (AP0401)   The    syntax    of    the           STR  MID  function  is:  STR
  182.          MID(<string>,<number>,<number>)
  183. (AP0402)   The    syntax    of    the         STR  RIGHT  function  is:  STR
  184.          RIGHT(<string>,<number>)
  185. (AP0403)   The    syntax    of         the    INSTR    function    is:
  186.          INSTR(<number>,<string>,<string>)
  187. (AP0404) The syntax of the EOF function is: EOF(<filenum>)
  188. (AP0405) The syntax of the STR FIND function is: STR FIND(<string>)
  189. (AP0406) The syntax of the LEN function is: LEN(<string>)
  190. (AP0407)  The syntax of the DATE and TIME functions is:  STR  DATE(<format>)
  191.          and STR TIME(<format>) where format is a number from 1 to 7.
  192. (AP0409)  The  syntax  of  the STR UPPER and STR  LOWER  functions  is:  STR
  193.          UPPER(<string>) and STR LOWER(<string>)
  194. (AP0410)  The  syntax  of the STR JLEFT and STR  JRIGHT  functions  is:  STR
  195.          JLEFT(<string>) and STR JRIGHT(<string>)
  196. (AP0411) The syntax of the STR CHR function is STR CHR(<number>)
  197. (AP0412) The syntax of the OPEN FLAG function is: OPEN FLAG(<number>)
  198. (AP0413) The syntax of the ASC function is ASC(<string>)
  199. (AP0414) The syntax of the ATTRIBUTE function: is ATTRIBUTE AT <row> <col>
  200. (AP0415) The syntax of the QUIET function is: QUIET( <number> [ {SECONDS}  ]
  201.          ) [ {MINUTES} ] [ {HOURS } ]
  202. (AP0416)  The   format    of    the       STR  REPLICATE  function  is:  STR
  203.          REPLICATE(<string>,<repititions>)
  204. (AP0417) The format of the STR TRUNCATE function is: STR TRUNCATE(<string>)
  205. (AP0418)   The    format    of    the           STR  PAD  function  is:  STR
  206.          PAD(<string>,<pad-string>,<number>)
  207. (AP0419)   The    format    of          the  STR  ENVIRONMENT  function  is:
  208.          STR_ENVIRONMENT(<string>)
  209. (AP0420)  The  format  of the STATUS_3278  function  is:  STATUS_3278(class)
  210.              where class is a number that  represents  the  type  of  status
  211.          requested. See the documentation for more information.
  212.  
  213.