|
|
|
Print Aztec Symbol In Crystal Reports
Aztec is a high-capacity 2D matrix barcode symbology that is able to encode more than 1000 ASCII and Extended ASCII characters.
1. Open DOS prompt. Go to the following folder
C:\Program Files\Common Files\Barcodesoft\FontUtil
Type in the following DOS command to register crUFLbcs.dll
regsvr32 crUFLbcs.dll

2. If you are using Crystal Reports 9 or above, please open BcsAztec.rpt from
C:\Program Files\Barcodesoft\AztecFont folder.
Crystal Reports has a string length limitation of 255 characters for formula field.
Therefore we have to split Aztec codewords into seperate parts, and concatenate them in a Text Object before apply font BcsAztec.
Right click Formula Fields from Field Explorer View, choose "New..." from the context menu as shown below

Create more formula fields as listed below if returned codewords are more than 255. Then put them all in the same Text Object.
BcsAztecEncodeCR({Test.Data}, '1')
BcsAztecEncodeCR({Test.Data}, '2')
BcsAztecEncodeCR({Test.Data}, '3')

For more information about Aztec barcode, please click Aztec.
|