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 didn't pass a non negative value as a parameter to a function that expects the parameter to be a non negative number. Function parameters that have been qualified by the 'nonnegative' qualifier expects a non negative number and produces this error if the parameter passed to the function is not 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)

To learn more about function parameter qualifiers, please click here.

Remedies

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

See Also

Comments


You are not allowed to post comments.