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.

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 about other function parameter qualifier, please click here.

Remedies

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




You are not allowed to post comments.

Comments
<comments />