Error Messages/40917


Error message examples

The second parameter «n» in the two-parameter Slice(U, n) call is not numeric.

Cause

You have passed a non numeric value as the second parameter to the Slice function. The second parameter is expected to be a number. The following call to the Slice function would trigger this error as 'a' is textual and not numeric.

...
Var b := Slice(Array_A, 'a');

Remedies

Correct the second parameter to the Slice function to be an integer.

See Also

Comments


You are not allowed to post comments.