--- 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
ADVERTISEMENT


Yahoo! Groups Links

Reply via email to