EAN/UCC 128 Barcode Generation
Posted: Fri Feb 26, 2010 6:10 am
Hi,
How shoul I insert EAN/UCC 128 barcodes into my reports? This format implies unptintable characters (for example, 29) to be inserted into code property, by StiReport just ignores 29 character when generation barcode.
I try to do it by the following:
char c = (char)29;
report.Dictionary.Variables["VariableName"].Value = "9198745069" + c + "3710000";
but this works exactly like there are no charactaer between "9198745069" and "3710000".
Please, advise.
How shoul I insert EAN/UCC 128 barcodes into my reports? This format implies unptintable characters (for example, 29) to be inserted into code property, by StiReport just ignores 29 character when generation barcode.
I try to do it by the following:
char c = (char)29;
report.Dictionary.Variables["VariableName"].Value = "9198745069" + c + "3710000";
but this works exactly like there are no charactaer between "9198745069" and "3710000".
Please, advise.