home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / vpascal.zip / ERR.TXT < prev    next >
Text File  |  1985-08-08  |  8KB  |  102 lines

  1. error message #0 -- this should never be displayed!     11/7/84               
  2. the file was not opened before this      operation.                           
  3. the file is not open for output (WRITE   operations). Do REWRITE first.       
  4. the file is not open for input (READ     operations). Do RESET first.         
  5. the disk is full; use a disk with  more  space on it.                         
  6. the directory is full with too many      files; erase some of them.           
  7. you can't ASSIGN a file that is already  open. CLOSE it first.                
  8. the file name has no characters in it.                                        
  9. attempted read beyond the end of file.   Test for EOF to prevent this error.  
  10. reading an integer that is out of range: integers must be -32767 to 32767.    
  11. error message #10 -- not used!                                                
  12. #11 -- div by 0                                                               
  13. #12 -- string length error                                                    
  14. #13 -- index out of range                                                     
  15. #14 -- case index out of range                                                
  16. #15 -- stack overflow                                                         
  17. #16 -- sub-range error                                                        
  18. #17                                                                           
  19. #18                                                                           
  20. #19                                                                           
  21. Reached the end of the file, program is  incomplete. Check program syntax.    
  22. Too many identifers declared.   Remove   some declarations or definitions.    
  23. ','  expected.                                                                
  24. Set elements must be between 0 and  255  in value.                            
  25. This character is incorrect here.                                             
  26. The program is too large; you must make  it smaller!                          
  27. All set constants must be the same type.                                      
  28. This item is incorrect at this point;    check your syntax.                   
  29. Multiple definition in the program,  or  a pre-declared identifier or routine.
  30. This word appears to be  an undeclared   identifier.                          
  31. A constant is expected here.                                                  
  32. A variable, constant, or function is expected here.                           
  33. Too many variables were declared,   or   arrays are too large.                
  34. Identifer expected.                                                           
  35. '=' expected.                                                                 
  36. ';' expected.                                                                 
  37. ':' expected.                                                                 
  38. This procedure/function was declared with a parameter list. '('  expected.    
  39. '(' expected.                                                                 
  40. ')' expected.                                                                 
  41. 'INTEGER', 'CHAR', 'BOOLEAN', 'STRING',  or 'TEXT' type identifier expected.  
  42. '..' expected, as in :ARRAY[1..10] OF..   etc                                 
  43. Boolean or integer expression required.                                       
  44. This word is incorrect at this point;    check your syntax.                   
  45. An integer is required here.                                                  
  46. The types of the two terms used here do  not match.                           
  47. A boolean expression must be used here:  it must be True or False.            
  48. The type of this expression does  not    match the control variable's type.   
  49. #48                                                                           
  50. ':=' required.                                                                
  51. Variable type does not match the type of the right hand part of statement.    
  52. Integer, character, boolean, or string   variable  is expected here.          
  53. 'END' expected.                                                               
  54. An integer or character expression  is   expected.                            
  55. 'THEN' expected.                                                              
  56. A CASE label can have a maximum value of 255.                                 
  57. This CASE label value is a duplicate of  a previous one.                      
  58. An integer  or  character  variable is   expected.                            
  59. 'OF' expected.                                                                
  60. This CASE label is not the same type as  the CASE variable or expression.     
  61. 'UNTIL' expected.                                                             
  62. 'DO' expected.                                                                
  63. Parameter expected, beginning with VAR   or an identifier.                    
  64. A variable or procedure identifier  is   expected.                            
  65. A statement or perhaps 'END' or ';' is   expected.                            
  66. The control variable in a FOR statement  must be a simple variable.           
  67. 'BEGIN' or a declaration section (CONST, TYPE, VAR) is expected.              
  68. A procedure or function name is expected.                                     
  69. 'BEGIN' expected.                                                             
  70. 'TO' or 'DOWNTO' expected.                                                    
  71. Incorrect symbol here;  a statement  is  expected.                            
  72. '.' or another statement or procedure    is expected here.                    
  73. sorry, GOTO's are not allowed, since     they can lead to bad habits!         
  74. 'DO' expected.                                                                
  75. '[' expected.                                                                 
  76. A positive integer is required for  the  index, between 1 and 4000.           
  77. ']' expected.                                                                 
  78. only an array or a string can have an    index.                               
  79. #78                                                                           
  80. #79                                                                           
  81. INTEGER, CHAR, or BOOLEAN expected for a  type.                               
  82. #81                                                                           
  83. Functions cannot return arrays.                                               
  84. The number of parameters disagrees with  the declaration made earlier.        
  85. The type of the parameter does not match the declaration made earlier.        
  86. A simple variable (without index) or a   constant is needed here.             
  87. 'PROGRAM' expected.                                                           
  88. Matching closing quotes required, single or double ('...' or "...").          
  89. READ and WRITE must have at least one    parameter to be meaningful.          
  90. Hexadecimal number such as $FF00 expected after a '$'.                        
  91. INTEGER, BOOLEAN, or CHAR funtion type   expected.                            
  92. #91                                                                           
  93. #92                                                                           
  94. #93                                                                           
  95. The array size does not agree with its   declaration.                         
  96. #95                                                                           
  97. An expression  or a  quoted string  is   expected.                            
  98. #97                                                                           
  99. #98                                                                           
  100. This declaration does not  match  the    previous declaration.                
  101. The compiler option  is: T+ or T-.       T- removes the debugger code.        
  102.