A subscript must be between 1 and size of array
i get this error when i try to to get the value out of an array.
for example:
numbervar array x;
x :=(1,2,3,4,5,6);
when i try to get the 2 value in the array
x[2];
i get the following error msg ----"A subscript must be between 1 and size of array "
it works fine when i retrieve the first value
x[1];
|