Difference between revisions of "EuoVer"

From Wiki
Jump to: navigation, search
m (#tileType)
Line 1: Line 1:
__NOTOC__
+
{{header|result|ro|The #euoVer system variable displays the version information of the currently executing EasyUO program. The format is as follows: (MAJOR)_(MINOR)_(BUILD).}}
== #euoVer ==
+
'''Result System Variables'''
+
=== Description ===
+
{{ro}}
+
 
+
The #euoVer system variable displays the version information of the currently executing EasyUO program. The format is as follows: (MAJOR)_(MINOR)_(BUILD).
+
  
 
==== Example ====
 
==== Example ====
Line 26: Line 20:
  
 
</pre>
 
</pre>
==== See Also ====
+
{{footer}}
{|
+
| Width=200px |
+
|}
+
----
+
{|
+
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]] || Width=200px | [[Documentation#Result|Result System Variables]]
+
|}
+

Revision as of 12:13, 26 August 2005

The #euoVer system variable displays the version information of the currently executing EasyUO program. The format is as follows: (MAJOR)_(MINOR)_(BUILD).

Example


;Checks to make sure the correct version of EUO is used for your script requirements. 
;#euo = 1_40_88 ,which is version 1.40 (build 0058)  58 hex = 88 dec 
set %euoBuildRequired  $ , 58 
set %euoVersionRequired 1_40 
str Left #euoVer 4 
set %euover #strRes 
str Right #euover 2 
set %euoBuild #strRes 
if  %euoVer <> %euoVersionRequired || %euoBuild < %euoBuildRequired 
{ 
   display ok This program requires EUO version 1.4 (build 0058) or higher in order$ 
+ to work. Download the latest version from www.easyuo.com.$ 
   halt 
}

See also

Main Page Documentation