Barcode Font 128 Crystal Reports
Code 128 Windows & Crystal Reports DLLs:.NET and COM DLLs, as well as a UFL for integration in Crystal Reports, to convert code 128 are now available free for all paid license levels (for anyone wishing to incorporate the Code 128 font in their own application.).
I have a formula field with a font of Code 128, to print string input from a user.
- Crystal Reports Code 128 Barcode Printing Shape Instead of Number. Ask Question 1. I have a formula field with a font of Code 128, to print string input from a.
- Create QR-Code barcodes with a font. Includes easy implementation examples for Crystal Reports, Microsoft Excel, Access and Word mail-merge. Conforms to AIM QR Code 2005, ISO/IEC and ISO/IEC including the encoding of the FNC1 for GS1 and the Extended Packaging URL AI (8200).
It prints fine every time except when two (2) zeros are next to each other. But the thing is its fine when it prints 100, but say I do 1000, it prints some rectangle shape in the barcode. Again 1001 it prints fine, 10001 it prints with a rectangle.
Here is the formula field:
@QuantityBarCode
The image shows 1000 as text (user input) and the barcode prints with the rectangle and I also added the barcode text to the bottom right corner to show what the barcode text looks like when encoded. I have noticed that the asterisk seems to be in the text when I get this weird shape.
Any help would be greatly appreciated :)
3 Answers
I know that probably it is too late, but I am answering this question for future if someone will have similar issue.
This code is provided for IDAutomationC128M.ttf font which have character on ascii 194 and font Code128.ttf does not have it... on ascii 194. The same character in Code128.ttf is available on ascii 207.
To make this code working with Code128.ttf just change chr(194) to chr(207), e.g.
Word Barcode Font 128
There is:
Should be:
Barcode 128 Generator
I tried the code above and Mateusz solution but it is not entirely correct.
In order to effectively correct the code provided and create some readable barcodes when 0s are next to each other, you need to change chr(194) to chr(32) everywhere you see it in the code.
Here is the Crystal Report function of BarCode128A for the free Code128 font