C#直接发送打印机命令到打印机及ZPL常用打印命令 - 条码打印机
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace BarCodeLibrary{ public class ZebraGesigner { [StructLayout(LayoutKi …… 阅读全文
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace BarCodeLibrary{ public class ZebraGesigner { [StructLayout(LayoutKi …… 阅读全文
//重启主程序 //System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location); #region 读存app.config字段值 public static string GetConfigValue(string ap …… 阅读全文
//C# 的串口通信,是采用serialPort控件,下面是对serialPort控件(也是串口通信必备信息)的配置如下代码:serialPort1.PortName = commcomboBox1.Text;serialPort1.BaudRate = int.Parse(baudcomboBox2.Text);serialPort1.Parity = (Parity)Enum.Parse …… 阅读全文
//write txtStringBuilder builder = new StringBuilder();FileStream fs = new FileStream(saveFileName, FileMode.Create);StreamWriter sw = new StreamWriter(fs, Encoding.Default);for (int i = 0; i < ds …… 阅读全文
(1)自定义纸张设置 控制面板->打印机和传真->右键->服务器属性->创建新的格式(2)自定义纸张使用 this.printDocument1.DefaultPageSettings.PaperSize = new System.Drawing.Printing.PaperSize("NewPrint", iWidth, iHeight); NewPrint:制 …… 阅读全文
#region 接口返回的Xml转换成DataSet /// /// 返回的Xml转换成DataSet /// /// Xml字符 /// private DataSet GetDataSet(string text) { try { XmlTextReader reader = …… 阅读全文
#region progressBar实时显示进度 private void button1_Click(object sender, EventArgs e) { int i = 10000; progressBar1.Minimum = 0; progressBar1.Maximum = i …… 阅读全文
通常,在C#中实现串口通信,我们有四种方法:第一:通过MSCOMM控件这是最简单的,最方便的方法。可功能上很难做到控制自如,同时这个控件并不是系统本身所带,所以还得注册,不在本文讨论范围。可以访问http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=320 ,一个国外网友的写的教程,作者很热心,我曾有发邮件给他,很快 …… 阅读全文