public function ActiveXControl
Prototype:
public function ActiveXControl(Owner, CLSID, LICENSE_KEY="")
Parameters
Owner
The owner of the control. Must be at least a SingleContainer-derrived object.
CLSID
a string containing the CLSID or PROGID of the control
LICENSE_KEY
a string containing the license key (if any)
Description:
This is the standard contructor for this class and should not be used directly. Instead, is called using the 'new' operator as in the example bellow.
Return value:
This is a constructor and returns nothing.
Example
var ax=new ActiveXControl(owner,"MSCAL.Calendar");
ax.Show();