Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1155
UltraCode128Barcode
posted

Hello,

 

i'm trying to use the UltraCode128Barcode-Control to display Barcodes. But unfortunately it's not working.

 

I've tried to realize this solution with different attributes. I tried it with UltraCode128Barcode control as well as by creating it manually by adding a Barcode() to the form.

 

I need to create Code128CodeType.Standard.

 

 

1.

 

            /* http://help.infragistics.com/Help/Doc/WinForms/2016.1/CLR4.0/html/xamBarcode_Adding_Barcode_In_Code_Behind.html

           

           var Barcode = new UltraCode128Barcode();

            Barcode.Data = "(01)00653216546543";

            Barcode.CodeType = Infragistics.Win.DataVisualization.Code128CodeType.Standard;

            this.Controls.Add(Barcode);

            */

 

           

2.

 

           ucb_Barcode.Data = "000000001236";

 

 

Can you please tell me how to get this barcode generation working with Infragistics?

 

Thanks in advance,

 

Jan