资源简介
C#调用BarTender源码,包含SDK,可直接使用,根据btw模板需要的参数,源码里直接添加赋值即可
代码片段和文件信息
using Seagull.BarTender.Print;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace print
{
class Program
{
static void Main(string[] args)
{
Engine btEngine = new Engine();
bool isAlive = btEngine.IsAlive;
btEngine.Start();
LabelFormatDocument btFormat = btEngine.Documents.Open(Path.Combine(“C://tools““test.btw“));//这里是Bartender软件生成的模板文件,你需要先把模板文件做好。
btFormat.PrintSetup.PrinterName = “HP LaserJet M1522 MFP Series PCL 6“;
btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; //打印份数
Messages messages;
int waitout = 10000; // 10秒 超时
Result nResult = btFormat.Print(“标签打印软件“ waitout out messages);
//string messageString = “\n\nMessages:“;
//foreach (Seagull.BarTender.Print.Message message in messages)
//{
// messageString += “\n\n“ + message.Text;
//}
btFormat.SubStrings[“k0“].Value = “12345“;//为Bartender里的数据源(文本框、条码等等)传值
//Result nResult1 = btFormat.Print(“标签打印软件“ waitout out messages);
btFormat.PrintSetup.Cache.FlushInterval = CacheFlushInterval.PerSession;
btFormat.Close(SaveOptions.DoNotSaveChanges);//不保存对打开模板的修改
btEngine.Stop();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5632 2018-12-21 10:52 print\print\bin\Debug\print.exe
文件 13824 2018-12-21 10:51 print\print\bin\Debug\print.pdb
文件 22712 2018-12-21 10:52 print\print\bin\Debug\print.vshost.exe
文件 490 2010-03-17 22:39 print\print\bin\Debug\print.vshost.exe.manifest
文件 6619 2018-12-21 10:33 print\print\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 533 2018-12-21 10:52 print\print\obj\Debug\print.csproj.FileListAbsolute.txt
文件 167930 2018-12-21 10:39 print\print\obj\Debug\print.csprojResolveAssemblyReference.cache
文件 5632 2018-12-21 10:52 print\print\obj\Debug\print.exe
文件 13824 2018-12-21 10:52 print\print\obj\Debug\print.pdb
文件 2727 2018-12-21 10:39 print\print\print.csproj
文件 1745 2018-12-21 10:52 print\print\Program.cs
文件 1334 2018-12-21 10:32 print\print\Properties\AssemblyInfo.cs
文件 984 2018-12-21 10:32 print\print.sln
..A..H. 27648 2018-12-21 11:15 print\print.v12.suo
目录 0 2018-12-21 10:32 print\print\obj\Debug\TempPE
目录 0 2018-12-21 10:39 print\print\bin\Debug
目录 0 2018-12-21 10:52 print\print\obj\Debug
目录 0 2018-12-21 10:32 print\print\bin
目录 0 2018-12-21 10:32 print\print\obj
目录 0 2018-12-21 10:32 print\print\Properties
目录 0 2018-12-21 10:52 print\print
目录 0 2018-12-21 10:32 print
文件 275536 2014-11-08 12:11 Seagull.BarTender.Print.dll
----------- --------- ---------- ----- ----
547170 23
相关资源
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C# 斑马标签打印 WEBWINFORM
- Winform可视化打印模板设计
- C#利用Zxing.NET生成条形码和二维码并实
- C# 斑马打印机USB接口ZPL条码打印
- C#调用USB接口斑马打印机
- .net批量打印word源码C#_VS2012
- 网页js与本地C#程序 websocket通讯实现打
- 带条码打印的固定资产管理系统源码
- 热敏打印机C#二次开发包DLL
- C# 实现的3D打印
- C#调用Godex(科诚)打印机打印1,2维
- .Net调用BarTender SDK及应用
- ZPL 打印条码、二维码及小票中文/汉字
- C#窗体三种方法生成二维码并打印的小
- c#快递单打印精灵
- u5-TW-C#打印操作--使用GDI绘图打印学生
- z1_C#打印操作--使用GDI绘图打印学生信
- C#打印操作--使用GDI绘图打印学生信息
- C#原生报表操作--设置每页打印30行2
- C#报表打印源代码合集
- C# ZPL指令打印标签(驱动并口或U口
- WPF报表控件表格和图表
- C#打印PDF的类库 PdfPrintingNet 无水印破
- printer++.rar
- c# winfrom实现票据打印
- COdeSoft打印
- C#打印机打印指定模块内容案例
- c# O2S.Components.PDFRender4NET破解版打印
评论
共有 条评论