Dynamic License Validation Rules

  • Create licenses to fit your needs
  • Change rules without re-compiling
  • Custom solutions for your valued customers

Feature Limit

The Feature Limit identifies named features that should be enabled by the license.

  • Assign custom names to features.
  • Select enabled features when generating serial numbers.
  • Enable features with an extension code after the software is installed.

Available only in the Professional Edition


Code Samples

_license = SecureLicenseManager.Validate(Me, Nothing, Nothing)
If _license.AreFeaturesEnabled("PrintEnabled") Then
    _print.Enabled = True
End If
_license = SecureLicenseManager.Validate( this, null, null );
if( _license.AreFeaturesEnabled( "PrintEnabled" ) )
    _print.Enabled = true;