oSession
This property contains a reference to the bizinfo library. This allows to invoke bizinfo properties or methods from a script.
Examples:
*/ Directly returns the version number.
oBiz = createobject("bizinfo.application")
? oBiz.Version()
*/ Define a script which returns the version number.
oBiz = createobject("bizinfo.application")
oBiz.cScript = "return oSession.version()"
? oBiz.ScriptExecute()