请教 BarTender9.4传参的问题?
BarTender9.4如何传参?传入参数值从数据库获取数据,类似水晶报表传参一样。
如图:
winfrom
我目前只能传到标签上制定的字段:
BarTender.Application bart = new BarTender.Application();
BarTender.Format bf = new BarTender.Format();
bart.Visible = false;
bf = bart.Formats.Open(@"D:\Btw\AFY.btw", false, "");
bf.SetNamedSubStringValue("cable_plate_lot", this.dgvHT.CurrentRow.Cells["CABLE_PLATE_LOT"].Value.ToString());
bf.PrintOut(false, false);
bart.Quit(); BarTender 报表 标签
补充:.NET技术 , C#