--- In [email protected], "irvr80" <[EMAIL PROTECTED]> wrote:
>
>
> Hi I need to print a barcodelabel called Ean128, normally we use bc
> 39, that works fine, now we have to use EAN128, it prints one or two
> lines thats it...
>
> Any ideas...???
hi
you have to change the width in the report to columnwidth and the
whole barcodestring should be shown.
constructing the barcode:
BarcodeEAN128 bc;
BarcodeEAN128AiData data = "" BarcodeEAN128AiData();
;
bc = Barcode::construct(BarcodeType::EAN128);
data.value("AAA1111");
bc.aIData(241, true, data);
bc.batch(true, "AA123AA");
data.value("01012001");
bc.aIData(12, true, data);
this.Barcode = bc.barcodeStr();
this.BarcodeHR = bc.barcodeStrHR();
}
but there is a problem with the axapta barcode dll: the function-code,
which should seperate fields of variable length from the next AI isn't
encoded proberly. If you have only on field in your barcode, it works.
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

