首页 > TAG信息列表 > btformat
C#使用BarTender打印二维码,纸张一行一列或多列
使用组件 Interop.BarTender.dll 提取码:2bxq 打印情况一: 如果打印次数不频繁,一次只是打印一个模板,前端可以进行直接获取到数据的情况,并且打印纸张是一行一列的,如:A4纸张单据打印。可以使用这种简单的方式: private void btnPrint_Click(object sender, EventArgs e) {BarTender最基本的打印
BarTender.Application btApp = new BarTender.Application(); BarTender.Format btFormat = new BarTender.Format(); btFormat = btApp.Formats.Open(@"路径", false, ""); btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; //使用winfrom调用BarTender实现标签的打印
1、实现BarTender的打印。 ①:第一步:首先要引用Interop.BarTender.dll文件 ② :第二步,直接贴代码 public partial class Form1 : Form { private BarTender.Application btApp; //Bartender 应用实例 private BarTender.Format btFormat;C 调用Bartender服务并打印bartender标签
通常大部分企业在生产,仓储,QC等运作环节会用到标签,标签上有些各种标识。 一般的企业都有配有标签软件+专用的标签打印机。此例以bartender为例子。 如果为了实现打印条码,或者显示具体的功能,用CR,FR等都可以实现。但这些报表工具毕竟不是专业的标签软件。 好兄弟大牛