Error Messages/40632
< Error Messages
Revision as of 19:07, 22 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = Unrecognized parameter to GetProcessInfo: 'TotalFreeMemory'. The following parameter values are recognized: 'Process ID', 'Thread ID' 'Priority' '…')
Error Message Examples
Unrecognized parameter to GetProcessInfo: 'TotalFreeMemory'. The following parameter values are recognized: 'Process ID', 'Thread ID' 'Priority' 'User' 'Windows Version' 'Windows Build' 'Windows SP' 'Computer Name' 'Abort Event Object' 'Working Set Size' 'Working Set Max' 'Working Set Min' 'Working Set Peak' 'Private Bytes' 'Page Fault Count' 'Analytica Path' 'Num Processors' 'Processor #' 'Affinity Mask' 'Command Line' 'Environment Variables' 'ENV:«name»"
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 the 'text' qualifier 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 an array with a non text value is passed to it.
Function MakeUpperCaps( str: text)
To learn more about function parameter qualifier, please click here.
Remedies
Correct the value of array passed to the function at the specified coordinate to be a text.
Comments
<comments />
Enable comment auto-refresher