Protect a VB.NET App with the QLM License Wizard Standalone Exe
Following is a step-by-step procedure to protect a VB.NET application by using the QLM License Wizard Standalone application. Note that the steps below assume you have a QLM License Server already setup.
1. Launch the QLM Management Console
2. Create a product from the âDefine Productâ tab or use the Demo 1.0 product if you are evaluating QLM.
3. Go to the "Protect your application" tab:
Click Next
Page 1: Select the product to protect and the License Server.
Page 2: Select VB.NET.
Page 3: Leave the default settings or customize the look & feel if needed. By default, QLM will bind the license to the Computer Name. You can select the binding of your choice by setting the QlmLicenseBinding property located in the section "6. Qlm License Properties".
Page 4a: Select the folder where your source code is located and click Save
Page 4b: Click Update Visual Studio Project and locate your *.csproj or *.vbproj file. If this step fails, just skip it.
Page 5: Click Finish
The "Protect your application" should have generated a class file called LicenseValidator.vb and an XML file that contains your customizations. In this guide, we will assume the XML file is called "Demo 1.0.lw.xml" which should be the case if you are evaluating QLM.
Open your Visual Studio project
If the Visual Studio integration above succeeded, confirm that the following was added to your project:
A reference to QlmLicenseLib.dll
A new file called LicenseValidator.vb
A new file called Demo 1.0.lw.xml
If the Visual Studio integration did not work, do the following:
Add a reference to C:\Program Files\Soraco\QuickLicenseMgr\Redistrib\net?.0\QlmLicenseLib.dll
Add the file LicenseValidator.vb to your project
Add the file Demo 1.0.lw.xml to your project and set the property "Copy to Output Directory" to "Copy if newer"
Copy C:\Program Files\Soraco\QuickLicenseMgr\Redistrib\net?.0\QlmLicenseWizard.exe to your bin folder.
You will now need to update your application to add the license validation code.
Add the following statement to your main module: Imports QlmLicenseLib
Define the following global variables:
Dim lv As QLM.LicenseValidator Dim settingsFile As String Dim wizardExec As String
Copy and paste the code below into your application
Now in your application's startup code, call ValidateLicense().
This completes the integration.
To generate a license key for testing purposes:
Go to the Manage Keys tab.
Click "Create Activation Key"
Select the Product (Demo 1.0 for trials) and click Ok.
Copy and Paste the generated Activation Key in the License Wizard launched when your application starts up and follow the steps in the wizard.
Last updated