Redundant Number of Indexes

Description

The specified number of indexes exceeds the number of indexes specified in the array description when referring to an array element.

Troubleshooting Tips

Delete the redundant indexes specified when referring to an array element.

Example

Sub UserProc;
Var
    s: Array[33Of Integer;
Begin
    s[123] := 3;
End Sub UserProc;

When the specified code is compiled, the string s[1, 2, 3] := 3; displays the following error: Redundant number of indexes. To resolve the error, delete one of the redundant indexes.

See also:

Compiler Messages