Function:
Creates a new object which links to an ActiveX application.
Syntax:
AXCreate <Name of the object> "<Name of the ActiveX application>"
Example:
; This example uses the ADO ActiveX application to connect to a database
AXCreate myConnection "ADODB.Connection"
myConnection.Open "Provider=Microsoft.Jet.OLEDB.4.0;User ID=;Password=;Data Source=C:\myDatabase.mdb;Persist Security Info=False"