1 out of 1 rated this helpful - Rate this topic

ScriptEngineMinorVersion Function

Returns the minor version number of the scripting engine in use.

ScriptEngineMinorVersion

The return value corresponds directly to the version information contained in the DLL for the scripting language in use.

The following example uses the ScriptEngineMinorVersion function to return the minor version number of the scripting engine:

Function GetScriptEngineInfo
   Dim s
   s = ""   ' Build string with necessary info.
   s = ScriptEngine & " Version "
   s = s & ScriptEngineMajorVersion & "."
   s = s & ScriptEngineMinorVersion & "."
   s = s & ScriptEngineBuildVersion 
   GetScriptEngineInfo = s   ' Return the results.
End Function
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ