The specified number of indexes exceeds the number of indexes specified in the array description when referring to an array element.
Delete the redundant indexes specified when referring to an array element.
Sub UserProc;
Var
s: Array[3, 3] Of Integer;
Begin
s[1, 2, 3] := 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: