Registered a Commercial License to the control. Commercial License validation is performed off-line at run-time.
Customer's email address used during purchase.
Customer's license activation key.
Registered a Commercial License to the control. Commercial License validation is performed off-line at run-time.
Visual Basic |
---|
Public Function ActivateCommercial( _ ByVal YourEmail As String, _ ByVal YourActivationKey As String _ ) As Boolean |
Customer's email address used during purchase.
Customer's license activation key.
True indicates the license information was submitted to control.
Commercial License
It is one-time non-expiring License Key for current major version that allows you to develop any number of Windows Desktop Applications and distribute them to any number of end users. The license binds to the email used during purchase and is validated off-line at run-time. You must hard-code the license key provided in all your executables. As long as your application does not fall in the Terminal classification, this is the only license you will ever need.
Developer Workstation Activation
It is one-time non-expiring complementary activation key that is used to enforce the «1x Commercial License per Developer» policy of the License Agreement. The key requires a Commercial License and binds to a Developer UUID, a hash code calculated by WebKitX on your workstation. Once you receive your Commercial License Key, you must email us your Developer UUID and we will reply with your Workstation Activation Key. The activation key is required only during development, is validated off-line at design-time. You must hard-code the activation key provided in all your executables.
Terminal License
This is a special purpose license, required for developing software classified as Terminal Applications. Those are Point of Sales (POS), Video Lottery (VLT) and Digital Signage (DS) applications that run on Windows Embedded operating systems, or served by a Terminal Server, or run in a Virtual Machine.For those terminal applications, additional annual Terminal Licenses must be obtained for the volumes of your end user terminals. The license binds to the email used during purchase and is validated on-line at run-time. You must hard-code the license key provided in all your executables.
Private Sub Form_Load() WebKitX.ActivateCommercial "epolitakis@mobilefx.com", "c4bb1f0461f174d7bc7f82574e88c888" WebKitX.ActivateWorkstation "bfb3694a7e977d7c5a53b99a1dc2981c" WebKitX.ActivateTerminal "4b4373dc601999998d4fd43b0f964825" End Sub