When you buy a commercial version of Neodynamic Barcode Professional for Reporting Services you are provided with license information to register and unlock your copy of Neodynamic Barcode Professional for Reporting Services.
The registration process is very simple but it depends on your Reporting scenario. In the following section we'll describe each of those possible scenarios and their particular registration method.
• Barcode DLL in SQL Server 2005/2008/2012 Reporting Services
• Barcode CRI in SQL Server 2005/2008/2012 Reporting Services
• Visual Studio 2005/2008/2010 Local Reports RDLC (ReportViewer controls)
License Registration
If you're using Barcode DLL with SQL Server 2005/2008 (R2)/2012 Reporting Services, then you must to set up the license properties into each VB.NET functions of your report that is using an instance of Barcode Professional.
For instance, in the following snipped code we're supposing you have a report which contains a VB.NET function into the Code section that uses Barcode Professional. Please take a look at how the license info must be set to the LicenseOwner and LicenseKey properties.
For instance, in the following snipped code we're supposing you have a report which contains a VB.NET function into the Code section that uses Barcode Professional. Please take a look at how the license info must be set to the LicenseOwner and LicenseKey properties.
IMPORTANT: Be careful when setting the license properties because they are case-sensitive!
Public Function GetBarcode(ByVal code As String) As Byte() 'Set the license information objBarcode.LicenseOwner = "THE LICENSE OWNER" objBarcode.LicenseKey = "THE LICENSE KEY" 'Set the value to encode objBarcode.Code = code ... 'Generate the barcode image Return objBarcode.GetBarcodeImage() End Function
Remember that if you had more that one function in the same report using Barcode Professional, then you must to set up the license properties into each of them.
After you've set up these properties the TRIAL legend should disappear from the barcode image, indicating that your copy was successfully registered as a licensed version.
After you've set up these properties the TRIAL legend should disappear from the barcode image, indicating that your copy was successfully registered as a licensed version.
If you are using Barcode CRI in Reporting Services 2005/2008 (R2)/2012 scenarios, there are two ways to set up the license information:
• License settings on a per-report basis
• License settings on a per-server basis
• License settings on a per-report basis
• License settings on a per-server basis
In Visual Studio Local Reports (RDLC) scenarios the license registration is accomplished by just setting up the license properties (LicenseOwner and LicenseKey) of Barcode Professional class (Neodynamic.ReportingServices.Barcode class).
Take a look at how to set up the license information depending on where you are using the Barcode Professional class:
Take a look at how to set up the license information depending on where you are using the Barcode Professional class:
IMPORTANT: Be careful when setting the license properties because they are case-sensitive!
After you've set these properties the TRIAL legend should disappear from the barcode image and it'll indicate that your copy was successfully registered as a licensed version.