Upgrading from Barcode Xpress 6 to Barcode Xpress 7
Moving from version 6 to version 7 of Barcode Xpress will require you to make some changes in your code. Outlined below are the changes that you should make.
Resources
You will need to update your project references to point to the new DLLs.
Edition
The number of editions has been changed to four; 1D Standard, 1D/2D Standard, 1D Professional, and 1D/2D Professional.
Change from:
barcodeXpress1.Licensing.LicenseEdition = Accusoft.BarcodeXpressSdk.LicenseChoice.StandardEdition;
Change to one of the following:
barcodeXpress1.Licensing.LicenseEdition = Accusoft.BarcodeXpressSdk.LicenseChoice.StandardEdition1D;
or
barcodeXpress1.Licensing.LicenseEdition = Accusoft.BarcodeXpressSdk.LicenseChoice.StandardEdition2D;
Change from:
Change to one of the following:barcodeXpress1.Licensing.LicenseEdition = Accusoft.BarcodeXpressSdk.LicenseChoice.ProfessionalEdition;
barcodeXpress1.Licensing.LicenseEdition = Accusoft.BarcodeXpressSdk.LicenseChoice.ProfessionalEdition1D;
or
barcodeXpress1.Licensing.LicenseEdition = Accusoft.BarcodeXpressSdk.LicenseChoice.ProfessionalEdition2D;
Deprecated
ErrorLevel property of the BarcodeXpress class has been deprecated. Instead, use DebugErrorLevel.
