Difference between revisions of "Error Messages/40632"

(Created page with '= Error Message Examples = Unrecognized parameter to GetProcessInfo: 'TotalFreeMemory'. The following parameter values are recognized: 'Process ID', 'Thread ID' 'Priority' '…')
 
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
= Error Message Examples  =
+
[[Category: Error messages]]
  
 +
== Error message examples  ==
 +
<pre style="background:white; border:white; margin-left: 1em; font-style:italic">
 
  Unrecognized parameter to GetProcessInfo: 'TotalFreeMemory'.  The following parameter values are recognized:
 
  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'
 
  'Process ID', 'Thread ID' 'Priority' 'User' 'Windows Version' 'Windows Build' 'Windows SP' 'Computer Name'
Line 6: Line 8:
 
  'Page Fault Count' 'Analytica Path' 'Num Processors' 'Processor #' 'Affinity Mask' 'Command Line'
 
  'Page Fault Count' 'Analytica Path' 'Num Processors' 'Processor #' 'Affinity Mask' 'Command Line'
 
  'Environment Variables' 'ENV:«name»"
 
  'Environment Variables' 'ENV:«name»"
 +
</pre>
  
= Cause  =
+
== Cause  ==
 +
You passed an unrecognized parameter to the function [[GetProcessInfo]]. You could have made a typo on the parameter that was passed as well. Please take look at the function description to see the parameters that can be passed to the [[GetProcessInfo#GetProcessInfo.28item.29|GetProcessInfo]] function.
  
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 [[Function_Parameter_Qualifiers#Text|'text' qualifier]] expects a text value or an array of text value, and produces this error on passing a non text value.
+
== Remedies  ==
 +
Correct the parameter passed to the [[GetProcessInfo]] function.
  
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.
+
==See Also==
 
+
* [[GetProcessInfo]]
<code>Function MakeUpperCaps( str: text) </code>
+
* [[Function calls and parameters]]
 
+
* [[Memory usage and management]]
To learn more about function parameter qualifier, please [[Function Parameter Qualifiers|click here]].
 
 
 
= Remedies  =
 
 
 
Correct the value of array passed to the function at the specified coordinate to be a text.
 
 
 
 
 
<br> <br><comments />
 

Latest revision as of 21:14, 14 March 2016


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 unrecognized parameter to the function GetProcessInfo. You could have made a typo on the parameter that was passed as well. Please take look at the function description to see the parameters that can be passed to the GetProcessInfo function.

Remedies

Correct the parameter passed to the GetProcessInfo function.

See Also

Comments


You are not allowed to post comments.