License Registration
When you buy a commercial version of Barcode Professional you are provided with license information to register your licensed copy of Neodynamic Barcode Professional SDK for .NET.
The registration process is very simple and can be accomplished in two ways:
Codeless License Setting
Codeless License Setting involves adding the license info in the Application's Configuration file (.config). The license info must be specified in the BarcodeProSDK100LicenseOwner and BarcodeProSDK100LicenseKey entries in the <appSettings> section of .config file. Example:
<configuration>
<appSettings>
<add key="BarcodeProSDK100LicenseOwner" value="LICENSE-OWNER"/>
<add key="BarcodeProSDK100LicenseKey" value="LICENSE-KEY"/>
</appSettings>
...
</configuration>
Using License Properties in code
In the class you're using BarcodeProfessional, set the LicenseOwner and LicenseKey static (shared in VB) properties with the license info you've received.
Important
Please, keep in mind that the license info is case-sensitive!
' WINDOWS FORMS SAMPLE
Imports Neodynamic.SDK.Barcode
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
BarcodeProfessional.LicenseOwner = "LICENSE-OWNER"
BarcodeProfessional.LicenseKey = "LICENSE-KEY"
End Sub
End Class
// WINDOWS FORMS SAMPLE
using Neodynamic.SDK.Barcode;
public partial class Form1 : Form
{
private void Form1_Load(object sender, EventArgs e)
{
BarcodeProfessional.LicenseOwner = "LICENSE-OWNER";
BarcodeProfessional.LicenseKey = "LICENSE-KEY";
}
}
After you set these properties the TRIAL legend should disappear from the generated image.