Error Messages/40638

< Error Messages
Revision as of 18:18, 22 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = In call to function MakeUpperCaps, the first parameter, str, should be a text value, but the array passed to this parameter contains a non-text valu…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Message Examples

In call to function MakeUpperCaps, the first parameter, str, should be a text value, but the array passed to this parameter contains a non-text value at coordinate:
              ArrayOfText=417.

Cause

You passed an array with a non text value to a functions that expects the parameter to be a text value or an array of text values. Function parameters that have been qualified by 'text' expects a text value or an array of text value, and produces this error on passing a non text value.

The following function expects the first parameter, str, to be a text value and throws this error when a non text is passed instead

Function MakeUpperCaps( str: text)

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

Remedies

Correct the array passed to the function at the specified coordinate.





You are not allowed to post comments.

Comments
<comments />