Assuming the table on your report has the item ID, this display method
should do the trick; remember to set the font on your control to the
appropriate barcode font, and size.
-Preston
display str lItemIDBC()
{
BarCode barCode = BarCode::construct(barCodeType::Code128);
;
barCode.string(true, strUpr(DATASOURCE.lItemId)); //Replace DATASOURCE
with your table name
barCode.encode();
return barCode.barcodeStr();
}
Building a stronger link in the Axapta community chain, join us at
<http://www.axaptalink.com/> http://www.axaptaLink.com
_____
From: arnekamp [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 05, 2005 2:50 AM
To: [email protected]
Subject: [development-axapta] Barcode printing
Hello,
I`m in need of a report that is similar to the WMSLocationLabel. I
also need the itemnumber to be printed as a barcode (Code128) This
shouldn`t be that complicated for a skilled programmer, but I`m just
a newbie and need some help.
_____
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]
<mailto:[EMAIL PROTECTED]>
* Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.
[Non-text portions of this message have been removed]
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.

