qperr.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Error Message
 
Error 61:  Index type is not compatible with the
           declaration
 
The specified index type, or subscript, of the array
in this statement is not consistent with the original
array declaration. For example, given the declarations:
 
   VAR
       TheGrade   : Array[ 1..25 ] OF Char;
       the_letter : Char;
 
the error occurs on the following line:
 
   the_letter := TheGrade[ 'A' ];