This workflow makes sense if you want to provide all screens in your own Look & Feel, you do not need online activation and you want to deliver a license file.
This scenario works as follows:
•Evaluation Version with generic license file. Use the same settings like EasyGo
•Customer buys the product - the installation code is displayed in your screen
•Installation code is transferred
•A customer specific license file including copy protection turned on is generated and sent back to the customer
•Customer copies license file to the installation directory
The generic license file, which is included in the installation package, has exactly the same settings like the file used with EasyGo. See Create license File.
At the program start, implement the following code sequence
•SetLanguage - define language for all screens and error messages. Necessary even if you use own screens
•Open the license file with PrepareAdvanced - implement an own error handling. Error 1024 (copy protection violation) should allow to type in an Activation Key to switch copy protection type. Use SecurityLevel and PrepareForce to open the file and ShowLicViewer or an own user interface to provide the necessary information
•Now test the main module with ValidateEX or ValidatesYes and check for time limitation with RemainingDays an/or ExpiredOn
•If the status Activation is none (0) then the software needs activation. Retrieve the activation status with GetWebActivation
•Display at least 2 installation codes (Hardware Ids) to register the software. Multiple codes are necessary in case one code can not be retrieved. Use GetInstcode to retrieve the code
•If the status Activation is done (2) then the software is activated
•To display errors you could use ShowStartErrorPage, which would also cover to view the license and apply keys. You can retrieve a language specific error message with GetErrorMessage for your own dialogs
•Use Quit at the end of the application
The customer has to transmit the 8 digit installation code. The next step is to create a customer specific license file (using the customer name, the installation code and all the modules the customer has bought). Important settings are:
•Set the field status of Activation to Done
•If the full version should have no time limitation, set Valid number of days to 0, Demo version to No and all other modules to the customer specific values.
•Select the desired Copy Protection method and type in the installation code the customer sent to you.
Each license file gets a new license file ID (like a Serial Number).
Now send the license file to the customer. As the copy protection is already switched on, the file can only be used on the licensed machine and the customer just has to copy the file to the installation directory.
You should provide a function to view the license information. Either provide the License Viewer or implement an own viewer.
See also
Create own License Viewer