C#打印条码操作的实例浅析

C#打印条码一般是通过图片方式或指令方式来打印,图片形式主要有fastreport。这里我们使用LPT端口控件来实现,而实际上绝大多数的条码打印机厂商都有一套他们自己的打印指令语言,通过这种语言,可以不需要驱动,支持直接打印,并且操作简单,仅仅将指令送入打印机中就好。

公司主营业务:成都网站设计、成都网站建设、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联公司是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联公司推出台州免费做网站回馈大家。

VS中存在Com口操作的控件,却未有现成的LPT端口控件,而相对COM口来说,LPT的速度要快,所以在打印的时候客户一般选择LPT通讯方式,经过网上的一些查阅,终于实现了LPT口的打印,打印机为Zebra,写出来与大家分享。

C#打印条码操作的实例:

 
 
 
  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.ComponentModel; 
  4. using System.Data; 
  5. using System.Drawing; 
  6. using System.Text; 
  7. using System.Windows.Forms; 
  8. //C#打印条码操作的实例
  9. namespace PrintDemo 
  10. public partial class Form1 : Form 
  11. {   
  12. public Form1() 
  13. InitializeComponent(); 
  14. private void Form1_Load(object sender, EventArgs e) 
  15. tbBarCode.Focus(); 
  16. //C#打印条码操作的实例
  17. private void tbBarCode_KeyDown(object sender, 
  18. KeyEventArgs e) 
  19. switch (e.KeyCode) 
  20. case Keys.Enter: 
  21. PrintBarcode(tbBarCode.Text.Trim()); 
  22. tbBarCode.Text = ""; 
  23. tbBarCode.Focus(); 
  24. break; 
  25. default: 
  26. break; 
  27. private void PrintBarcode(string Barcode) 
  28. Barcode = "^XA^FO48,12^BY4^BCN,152,N,N^FD>;" + 
  29. //C#打印条码操作的实例
  30. Barcode.Trim() + "^FS^FT62,220^CI0^ABN,44,28^FD" + 
  31. Barcode.Trim() + "^FS^PQ1,0,1,Y^XZ"; 
  32. PrintDemo.POSPrinter prn = new 
  33. PrintDemo.POSPrinter("LPT1"); 
  34. string strmsg = prn.PrintLine(Barcode); 
  35. if (strmsg != "") 
  36. MessageBox.Show(strmsg); 

C#打印条码操作之类POSPrinter定义如下

 
 
 
  1. namespace PrintDemo 
  2. class POSPrinter 
  3. const int OPEN_EXISTING = 3; 
  4. string prnPort = "LPT1"; 
  5. [DllImport("kernel32.dll", CharSet = CharSet.Auto)] 
  6. private static extern IntPtr CreateFile(string 
  7. lpFileName, 
  8. int dwDesiredAccess, 
  9. int dwShareMode, 
  10. int lpSecurityAttributes, 
  11. int dwCreationDisposition, 
  12. int dwFlagsAndAttributes, 
  13. int hTemplateFile); 
  14. public POSPrinter() 
  15. //
  16. //   TODO:   在此处添加构造函数逻辑
  17. //
  18. public POSPrinter(string prnPort) 
  19. this.prnPort = prnPort;//打印机端口
  20. public string PrintLine(string str) 
  21. IntPtr iHandle = CreateFile(prnPort, 0x40000000, 
  22. 0, 0, OPEN_EXISTING, 0, 0); 
  23. if (iHandle.ToInt32() == -1) 
  24. return "LPT1 Port Open Failed"; 
  25. else 
  26. FileStream fs = new FileStream(iHandle, 
  27. FileAccess.ReadWrite); 
  28. StreamWriter sw = new StreamWriter(fs, 
  29. System.Text.Encoding.Default);//C#打印条码操作之写数据
  30. sw.WriteLine(str); 
  31. sw.Close(); 
  32. fs.Close(); 
  33. return ""; 
  34. }   
  35. }

C#打印条码操作的实例浅析就向你介绍到这里,希望对你了解和学习C#打印条码操作有所了解。

本文题目:C#打印条码操作的实例浅析
本文链接:http://www.shufengxianlan.com/qtweb/news21/270521.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联