C#调用bartender打印标签配置和测试说明
更新时间:2024-04-30 10:06:01 阅读量: 综合文库 文档下载
C#调用bartender打印标签
第一部分:配置说明
//useLegacyV2RuntimeActivationPolicy = true;在app.config中添加一个配置节:startup
//增加引用,BarTender 10.1 和Seagull.Bartender.Print 两个引用.dll文件
//一个两个方法(用数据库和具名数据源作为区分) //方法1:配置如下
//标签test1.btw 设置为具名数据源(数据源类型为镶入的数据)同时配对每一个输出标签格
//方法2:配置如下
//标签test.btw 设置为数据库(以excel为数据库)同时配对每一个输出标签格
第二部分:界面和代码
using System;
using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text;
using System.Windows.Forms; using Seagull.BarTender.Print; using System;
using System.Diagnostics; using System.Drawing.Printing;
namespace WindowsFormsApplication1 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent(); }
//useLegacyV2RuntimeActivationPolicy = true;在app.config中添加一个配置节:startup //增加引用,BarTender 10.1 ,Seagull.Bartender.Print 两个引用
private void button1_Click(object sender, EventArgs e)//输入内容后选择打印机 {
BarTender.Application btApp = new BarTender.Application(); BarTender.Format btFormat;
btFormat=btApp.Formats.Open(@\,false,\); btFormat.PrintSetup.IdenticalCopiesOfLabel=1; btFormat.PrintSetup.NumberSerializedLabels=1;
btFormat.SetNamedSubStringValue(\, this.StyleNotext.Text); btFormat.SetNamedSubStringValue(\, this.HelpCodetext.Text); btFormat.SetNamedSubStringValue(\, this.ProductCategoryNametext.Text);
btFormat.SetNamedSubStringValue(\, this.MetalPurityNametext.Text);
btFormat.SetNamedSubStringValue(\, this.MaterialTypeNametext.Text);
btFormat.SetNamedSubStringValue(\, this.RingSizetext.Text); btFormat.SetNamedSubStringValue(\, this.Weighttext.Text);
btFormat.SetNamedSubStringValue(\, this.StoneQuantitytext.Text); btFormat.SetNamedSubStringValue(\, this.StoneWeighttext.Text); btFormat.PrintOut(false,true); }
private void button3_Click(object sender, System.EventArgs e)//导出execl后调用模板选择打印机 {
BarTender.Application btApp = new BarTender.Application(); BarTender.Format btFormat;
btFormat = btApp.Formats.Open(@\, false, \); //btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; //btFormat.PrintSetup.NumberSerializedLabels = 1;
//btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\
//btFormat.SetNamedSubStringValue(\戒指\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\锆石\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ btFormat.PrintOut(false, true); }
private void button4_Click(object sender, System.EventArgs e)//输入内容后指定打印机 {
Engine btEngine = new Engine(); btEngine.Start();
LabelFormatDocument btFormat = btEngine.Documents.Open(\); //指定打印机名
btFormat.PrintSetup.PrinterName = \; //改变标签打印数份连载
btFormat.PrintSetup.NumberOfSerializedLabels = 1; //打印份数
btFormat.PrintSetup.IdenticalCopiesOfLabel = 1;
btFormat.SubStrings[\].Value = this.StyleNotext.Text; btFormat.SubStrings[\].Value = this.HelpCodetext.Text; btFormat.SubStrings[\].Value = this.ProductCategoryNametext.Text;
btFormat.SubStrings[\].Value = this.MetalPurityNametext.Text; btFormat.SubStrings[\].Value = this.MaterialTypeNametext.Text; btFormat.SubStrings[\].Value = this.Weighttext.Text; btFormat.SubStrings[\].Value = this.StoneQuantitytext.Text; btFormat.SubStrings[\].Value = this.StoneWeighttext.Text; Messages messages;
int waitout = 10000; // 10秒 超时
Result nResult1 = btFormat.Print(\标签打印软件\, waitout, out messages); btFormat.PrintSetup.Cache.FlushInterval = CacheFlushInterval.PerSession; //不保存对打开模板的修改
//btFormat.Close(SaveOptions.DoNotSaveChanges); //结束打印引擎 btEngine.Stop(); }
private void button5_Click(object sender, System.EventArgs e)//导出execl后调用模板指定打印机 {
BarTender.Application btApp = new BarTender.Application(); BarTender.Format btFormat;
btFormat = btApp.Formats.Open(@\, false, \); //btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; //btFormat.PrintSetup.NumberSerializedLabels = 1;
//btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\
//btFormat.SetNamedSubStringValue(\戒指\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\锆石\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ btFormat.PrintOut(false, false); }
private void button2_Click(object sender, System.EventArgs e)
//同一模板选择打印机
//特别说明这里要测试的是同一个模板,先设置数据库再设置具名数据源的情况下报错 //报错代码为 btFormat.SetNamedSubStringValue(\找
不到具名数据源
//测试之后发现,不能同时支持数据库和具名数据源两个配置
{
this.StyleNotext.Text = \; this.HelpCodetext.Text = \;
this.ProductCategoryNametext.Text = \戒指\; this.MetalPurityNametext.Text = \红黄白\; this.MaterialTypeNametext.Text = \爆炸石\; this.RingSizetext.Text = \; this.Weighttext.Text = \; this.StoneQuantitytext.Text = \; this.StoneWeighttext.Text = \;
BarTender.Application btApp = new BarTender.Application(); BarTender.Format btFormat;
btFormat = btApp.Formats.Open(@\, false, \); btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; btFormat.PrintSetup.NumberSerializedLabels = 1;
btFormat.SetNamedSubStringValue(\, this.StyleNotext.Text); btFormat.SetNamedSubStringValue(\, this.HelpCodetext.Text); btFormat.SetNamedSubStringValue(\, this.ProductCategoryNametext.Text);
btFormat.SetNamedSubStringValue(\, this.MetalPurityNametext.Text);
btFormat.SetNamedSubStringValue(\, this.MaterialTypeNametext.Text);
btFormat.SetNamedSubStringValue(\, this.RingSizetext.Text);
btFormat.SetNamedSubStringValue(\, this.Weighttext.Text);
btFormat.SetNamedSubStringValue(\, this.StoneQuantitytext.Text); btFormat.SetNamedSubStringValue(\, this.StoneWeighttext.Text);
btFormat.PrintOut(false, true); } } }
正在阅读:
构建财务共享中心06-28
亲权与监护权的区别09-15
北采区2.5米绞车绞车安装施工组织设计01-07
查询引擎实施顾问培训(上)08-12
3334_四川师范大学2014届本专科优秀大学毕业生拟定名单xls08-19
中学生饮食有哪些需要.docx07-22
乌镇一日游 2015年秋季旅游手记(2)04-09
- 多层物业服务方案
- (审判实务)习惯法与少数民族地区民间纠纷解决问题(孙 潋)
- 人教版新课标六年级下册语文全册教案
- 词语打卡
- photoshop实习报告
- 钢结构设计原理综合测试2
- 2014年期末练习题
- 高中数学中的逆向思维解题方法探讨
- 名师原创 全国通用2014-2015学年高二寒假作业 政治(一)Word版
- 北航《建筑结构检测鉴定与加固》在线作业三
- XX县卫生监督所工程建设项目可行性研究报告
- 小学四年级观察作文经典评语
- 浅谈110KV变电站电气一次设计-程泉焱(1)
- 安全员考试题库
- 国家电网公司变电运维管理规定(试行)
- 义务教育课程标准稿征求意见提纲
- 教学秘书面试技巧
- 钢结构工程施工组织设计
- 水利工程概论论文
- 09届九年级数学第四次模拟试卷
- C#
- 调用
- bartender
- 配置
- 说明
- 标签
- 测试
- 打印