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
Yes, the article I was looking for. Your article gives me another approach on the subject. I hope to read more articles from you.wings io