$ErrSet: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:$ErrSet}} <span class="pageSubtitle"><section begin="desc" />Increment or clear number of counting errors, set $ERRMSG<section end="desc" /></span> <p class="warn...")
 
(Automatically generated page update)
 
(40 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:$ErrSet}}
{{DISPLAYTITLE:$ErrSet}}
<span class="pageSubtitle"><section begin="desc" />Increment or clear number of counting errors, set $ERRMSG<section end="desc" /></span>
<span class="pageSubtitle">Increment or clear number of counting errors, set $Errmsg</span>


<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $ErrSet function is [[to be entered]].</p>
<p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $ErrSet function.</p>


This function allows you to set or clear the current error message (which is returned by $ERRMSG) and to increment or clear the number of "counting" errors.  
This function allows you to set or clear the current error message (which is returned by <var>[[$Errmsg]]</var>) and to increment or clear the number of "counting" errors.  


The $ErrSet function accepts one argument and returns a number indicating the current number of counting errors. As of ''[[Sirius Mods]]'' Version 6.8, it is a callable $function .  
The <var>$ErrSet</var> function accepts one argument and returns a number indicating the current number of counting errors. It is a [[Calling Sirius Mods $functions|callable]] $function.  


The first argument is a string indicating the message to be returned by the next $ERRMSG call. If this argument is omitted or null, the current error message is cleared and the number of counting errors is set to 0; otherwise the number of counting errors is incremented.
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> [%COUNT =] $ErrSet(string)
<p class="syntax">[<span class="term">%count</span> =] $ErrSet(<span class="term">string</span>)
<section end="syntax" /></p>
<p class="caption">$ErrSet Function
</p>
</p>
<p class="caption">%COUNT is the number of "counting" errors.</p>
Where:
For example
<table>
<p class="code"> %COUNT = $ErrSet('NASTY ERROR')
<tr><th>%count</th><td>The number of "counting" errors.</td></tr>
%JUNK = $ERRMSG
 
<tr><th>string</th><td>A string indicating the message to be returned by the next <var>$Errmsg</var> call. If this argument is omitted or null, the current error message is cleared and the number of counting errors is set to 0; otherwise the number of counting errors is incremented.</td></tr>
</table>
 
==Example==
The following statement sequence sets <code>%junk</code> to <code>NASTY ERROR</code> and increments the number of counting errors.
<p class="code">%count = $ErrSet('NASTY ERROR')
%junk = $Errmsg
</p>
</p>
would set %JUNK to 'NASTY ERROR' and would increment the number of counting errors.


You can also change the number of counting errors (the Sirius ERCNT parameter) with [[$Resetn]].
<p class="note"><b>Note:</b> You can also change the number of counting errors (the <var>[[ERCNT parameter|ERCNT]]</var> parameter) with <var>[[$Resetn]]</var>. </p>
 
==Products authorizing {{PAGENAMEE}}==
<ul class="smallAndTightList">
<ul class="smallAndTightList">
<li>[[Sirius functions]]</li>
<li>[[List of $functions|Sirius functions]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Janus Open Client]]</li>
<li>[[Media:JoclrNew.pdf|Janus Open Client]]</li>
<li>[[Janus Open Server]]</li>
<li>[[Media:JosrvrNew.pdf|Janus Open Server]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Japanese functions]]</li>
<li>Japanese functions</li>
<li>[[Sir2000 Field Migration Facility]]</li>
<li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li>
 
</ul>
</ul>
<p class="caption">Products authorizing $ErrSet
</p>


[[Category:$Functions|$ErrSet]]
[[Category:$Functions|$ErrSet]]

Latest revision as of 22:51, 20 September 2018

Increment or clear number of counting errors, set $Errmsg

Note: Many $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $ErrSet function.

This function allows you to set or clear the current error message (which is returned by $Errmsg) and to increment or clear the number of "counting" errors.

The $ErrSet function accepts one argument and returns a number indicating the current number of counting errors. It is a callable $function.

Syntax

[%count =] $ErrSet(string)

Where:

%countThe number of "counting" errors.
stringA string indicating the message to be returned by the next $Errmsg call. If this argument is omitted or null, the current error message is cleared and the number of counting errors is set to 0; otherwise the number of counting errors is incremented.

Example

The following statement sequence sets %junk to NASTY ERROR and increments the number of counting errors.

%count = $ErrSet('NASTY ERROR') %junk = $Errmsg

Note: You can also change the number of counting errors (the ERCNT parameter) with $Resetn.

Products authorizing $ErrSet