FNC1 In a barcode

Stimulsoft Reports.NET discussion
Post Reply
Terry
Posts: 3
Joined: Wed Nov 10, 2010 12:31 pm

FNC1 In a barcode

Post by Terry »

I am new, very new to Stimulsoft, and we need to create a barcode with the FNC1, how can I do that using the software. I did find this code on a Forum but not sure if it is correct. Can anybody help me with it.

Code128a, Code128b, EAN-128a, EAN-128b barcode understand the "FNC1" command (it is used for aggregation several data rows in one bar-code).
To input this command to the data row the 0x81 character is used. For example:

{"Data1" + "\x81" + "Data2"}
{"Line1 " + (char)129 + " Line2"}

This is the code I am testing/working with.
{String.Concat("91",Trim(LBS.[order.productDescription]),"\x81" ,"37",LBS.[order.actualQuantityPerUnit])}

Any help would be appreciated.
Ivan
Posts: 960
Joined: Thu Aug 10, 2006 1:37 am

FNC1 In a barcode

Post by Ivan »

Hello,

Please use the following expression, for example:

Code: Select all

{String.Concat("91", Trim(LBS.[order.productDescription]), '\x81', "37", LBS.[order.actualQuantityPerUnit])}
{String.Concat("91", Trim(LBS.[order.productDescription]), (char)129, "37", LBS.[order.actualQuantityPerUnit])}
Thank you.
Post Reply