UniSuiteLite and UniSuitePlus downloads now contain the full installer with OCX.

Environment Locked
UnLocked
Behavior
IDE You can use the OCX controls without any time limitations.
Compiled Exe Controls will work normally but will have their captions replaced with "UnLicensed"
Compiled Exe Sample code to unlock control(s) in Exe:
  • Add UniSuiteLite or UniSuitePlus_BDC0849A via Project/Components.
  • Add control(s) to Form via ToolBox
  • Set startup to Sub Main.
  • Licensed users please contact support@cyberactvex.com for Activation code.
  • In Sub Main add this code:

    Option Explicit

    Public cLicense As New UniSuitePlus.clsEnums 'or UniSuiteLite.clsEnums

    Public Sub Main()
       cLicense.ActivateLibrary "LicenseCodeGoesHere"
       frmDemoLite.Show
    End Sub