本篇文章為大家展示了C#中怎么實現打印條碼操作,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
成都創新互聯專業為企業提供太倉網站建設、太倉做網站、太倉網站設計、太倉網站制作等企業網站建設、網頁設計與制作、太倉企業網站模板建站服務,十多年太倉做網站經驗,不只是建網站,更提供有價值的思路和整體網絡服務。
C#打印條碼操作的實例:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; //C#打印條碼操作的實例 namespace PrintDemo { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { tbBarCode.Focus(); } //C#打印條碼操作的實例 private void tbBarCode_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: PrintBarcode(tbBarCode.Text.Trim()); tbBarCode.Text = ""; tbBarCode.Focus(); break; default: break; } } private void PrintBarcode(string Barcode) { Barcode = "^XA^FO48,12^BY4^BCN,152,N,N^FD>;" + //C#打印條碼操作的實例 Barcode.Trim() + "^FS^FT62,220^CI0^ABN,44,28^FD" + Barcode.Trim() + "^FS^PQ1,0,1,Y^XZ"; PrintDemo.POSPrinter prn = new PrintDemo.POSPrinter("LPT1"); string strmsg = prn.PrintLine(Barcode); if (strmsg != "") { MessageBox.Show(strmsg); } } } }
C#打印條碼操作之類POSPrinter定義如下
namespace PrintDemo { class POSPrinter { const int OPEN_EXISTING = 3; string prnPort = "LPT1"; [DllImport("kernel32.dll", CharSet = CharSet.Auto)] private static extern IntPtr CreateFile(string lpFileName, int dwDesiredAccess, int dwShareMode, int lpSecurityAttributes, int dwCreationDisposition, int dwFlagsAndAttributes, int hTemplateFile); public POSPrinter() { // // TODO: 在此處添加構造函數邏輯 // } public POSPrinter(string prnPort) { this.prnPort = prnPort;//打印機端口 } public string PrintLine(string str) { IntPtr iHandle = CreateFile(prnPort, 0x40000000, 0, 0, OPEN_EXISTING, 0, 0); if (iHandle.ToInt32() == -1) { return "LPT1 Port Open Failed"; } else { FileStream fs = new FileStream(iHandle, FileAccess.ReadWrite); StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.Default);//C#打印條碼操作之寫數據 sw.WriteLine(str); sw.Close(); fs.Close(); return ""; } } } }
上述內容就是C#中怎么實現打印條碼操作,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創新互聯行業資訊頻道。
當前標題:C#中怎么實現打印條碼操作
文章源于:http://vcdvsql.cn/article26/gjeecg.html
成都網站建設公司_創新互聯,為您提供用戶體驗、網頁設計公司、網站營銷、關鍵詞優化、標簽優化、全網營銷推廣
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯