VBScript
This function creates an instance of the given COM object.
PBXScript.CreateObject ( sObjectName )
This functions returns an object.
This function is identical to the VBScript build-in function CreateObject.
Example:
' create an ADODB.Connection object Dim oDB Set oDB = PBXScript.CreateObject ("ADODB.Connection")
Don't forget to release the object again, once it is not needed anymore.
Set oDB = Nothing
By Tom Wellige