Skip Navigation Links
 
 

Method ForceActivation
   void ForceActivation ( )

If using DefaultDialogs (=True) this will display the unlock screen. It is best used during the demo period after asking the user if they would like to activate their license. It could also be used at any point to force the user to connect to the internet.

Usage:
<SecurityObject>.ForceActivation()

Sample (VBA) Code:
If Security1.GetRemainingDemo > 0 And Security1.GetLicenseStatus = 2 Then
   If MsgBox("Would you like to activate your license now?", vbYesNo) = vbYes Then
      Security1.ForceActivation
   End If
End If