hi..
how to change barcode type from code?
thanks
barcode?
barcode?
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
StiReport report = new StiReport();
report.Load();
StiBarCode barCode1 = report.GetComponents()["BarCode1"] as StiBarCode;
bc.BarCodeType = new StiEAN8BarCodeType(13F, 1F, Stimulsoft.Report.BarCodes.StiEanSupplementType.None, null, true);
//bc.BarCodeType = new StiEAN13BarCodeType(13F, 1F, Stimulsoft.Report.BarCodes.StiEanSupplementType.None, null, true);
//...
report.Design();
barcode?
thanks... its work..
what about if i change not for design?
thanks
what about if i change not for design?
thanks
barcode?
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
StiReport report = new StiReport();
report.Load();
StiBarCode barCode1 = report.GetComponents()["BarCode1"] as StiBarCode;
barCode1.BarCodeType = new StiEAN8BarCodeType(13F, 1F, Stimulsoft.Report.BarCodes.StiEanSupplementType.None, null, true);
//barCode1.BarCodeType = new StiEAN13BarCodeType(13F, 1F, Stimulsoft.Report.BarCodes.StiEanSupplementType.None, null, true);
//...
report.Compile();
report.Render();
report.Show();