Error Messages/40640

Error Message Examples

In call to function Make_widgets, the first parameter, num, should be greater than or equal to zero.

Cause

You passed a non negative value as a parameter to a function that expects the parameter to be a non negative number.

The following function expects the first parameter, num, to be a non negative number and throws this error when a negative number, text, reference or handle is passed to the function.

Function Make_widgets( num: nonnegative; type: text)

Go here for more information on function parameter qualifiers.


Remedies

Correct the parameter passed to the function to be a non negative number.




You are not allowed to post comments.

Comments
<comments />