|
Licensing Control
Easily add full featured licensing to your products. Allow first
install evaluation licenses based on number of uses, days, or processes
ran. Add up to 64 features, each with their own Evaluation Days or
Number of Uses.
Adding this control takes about 10 lines of code (typically in the
Startup procedure of your application). A sample of this code (in
Visual Basic .Net) is as so:
myLicensing = New ImageMentorLicensing.LicensingClient("MyProductName")
If myLicensing.IsEvalLicense And myLicensing.EvalDaysRemaining < 0 Then
If MsgBox("Your licensing has expired. Would you like to modify your licensing now?", _
MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
myLicensing.ShowLicenseDialog()
If myLicensing.IsRegistered = False And myLicensing.EvalDaysRemaining <= 0 Then
' This product is not licensed, and the eval license has expired
myLogForm.Dispose()
myLicensing.Dispose()
Application.Exit()
Exit Sub
End If
Else
' This product is not licensed, and the eval has expired
myLicensing.Dispose()
Application.Exit()
Exit Sub
End If
End If
|
Purchase
Ascent Helper DLL
We commonly use this DLL with our Kofax Ascent Capture users
that have custom SBL scripts that need to do things that you can't
commonly or easily do in the SBL scripting language (such as a Replace
function). This DLL is free to use, and free to redistribute, as long
as you don't modify the help documentation, or the DLL itself.
Download | Help
Documentation
|
Product Links:
|