Error Messages/40917

< Error Messages
Revision as of 20:05, 4 February 2010 by AManandhar (talk | contribs) (Created page with '= 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 parame…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.



You are not allowed to post comments.

Comments
<comments />