Shortcut Menu

Skip

Main Navigation

Choose your language

You are here:

ActiveXperts.com > Support > Distribute

Activexperts Support Pages

How to distribute an ActiveXperts Component

ActiveXperts Software offers Distribution Licenses for the following products:

  • ActiveXperts SMS Component
  • ActiveXperts Network Component
  • ActiveXperts Twitter Component
  • ActiveXperts Serial Port Component
  • ActiveXperts Email Component
  • ActiveXperts Scripting Component

For each product, the core consists of just one file, the actual ActiveX DLL file. This is the only file required for distributing the product. For each product, this DLL is located in the C:\Program Files\Common Files\ActiveXperts folder by default, with the following name:

Product 32 bit DLL file 64 bit DLL file Default Location
ActiveXperts SMS ComponentAxSms32.dllAxSms64.dllC:\Program Files\Common Files\ActiveXperts
ActiveXperts Network ComponentAxNetwork32.dllAxNetwork64.dllC:\Program Files\Common Files\ActiveXperts
ActiveXperts Twitter ComponentAxTwitter32.dllAxTwitter64.dllC:\Program Files\Common Files\ActiveXperts
ActiveXperts Serial Port ComponentAxSerial32.dllAxSerial64.dllC:\Program Files\Common Files\ActiveXperts
ActiveXperts Email ComponentAxEmail32.dllAxEmail64.dllC:\Program Files\Common Files\ActiveXperts
ActiveXperts Scripting ComponentAxScript32.dllAxScript64.dllC:\Program Files\Common Files\ActiveXperts

To distribute the DLL to one or more PC's as part of your software or solution, you must do the following:

  • Purchase a Distribution License of the product. A valid registration key will be sent to you. You can use this key on all target PC's, inside or outside your network;
  • Copy the DLL to the target PC. This can be done manually, or as part of your software installation/script;
  • Enter the registration key on the target computer. This can be done manually by editting the registry, but can also be done automatically by calling the 'Activate' function (all objects have an 'Activate' method).

    'Activate' requires two parameters:
    - Actual registration key (String);
    - Persistent or not (Boolean).

    If you specify 'False' in the 2nd parameter, the key will be NOT be written to the registry (so it is hidden to the end-user) and as a result, you need to call 'Activate' each time you use the object.
    If you specify 'True' in the 2nd parameter, the key is written to the registry, so you need to call 'Activate' only once.
    For distribution licenses, it is strongly recommended to use Activate with 'False' as second parameter.