c# 288

#C#
ZPL条码打印类

using System; using System.Collections.Generic; using System.Linq; using System.Text; usin…

c#
2015-07-24 903

#C#
在C#中实现串口通信的方法

通常,在C#中实现串口通信,我们有四种方法: 第一:通过MSCOMM控件这是最简单的,最方便的方法。可功能上很难做到控制自如,同时这个控件并不是系统本身所带,所以还得注册,不在本文…

c#
2015-07-20 572

#C#
C#串口开发辅助类

using System; using System.Collections.Generic; using System.Text; using System.IO.Ports; …

c#
2015-07-15 947

#C#
C#一款比较美观的验证码

using System; using System.Collections.Generic; using System.Web; using System.Web.UI; usi…

c#
2015-07-15 396

#C#
一行代码,发送邮件

由于几乎在每个项目开发中都离不开发送邮件功能,所以,我们反感反复造轮子,就随手基于Net.Mail封装的发送邮件代码。这段代码写了很久了,今天拿出来完善了一下、改了一个bug、加了…

c#
2015-07-15 839

#C#
C#钩子类 几乎捕获键盘鼠标所有事件

using System; using System.Text; using System.Runtime.InteropServices; using System.Reflec…

c#
2015-07-15 861

#C#
C#生成Code128码

using System; using System.Collections.Generic; using System.Data; using System.Drawing; n…

c#
2015-07-15 1,002

#C#
C# WinForm获取当前路径汇总

Winform获取应用程序的当前路径的方法集合,具体如下,值得收藏 //获取当前进程的完整路径,包含文件名(进程名)。 string str = this.GetType().As…

c#
2015-07-15 266

#C#
c# xml操作类 比较齐全

using System; using System.Data; using System.Configuration; using System.Web; using Syste…

c#
2015-07-15 328

#C#
PLB条码打印

using System; using System.Collections.Generic; using System.ComponentModel; using System.…

c#
2015-07-15 870

#C#
C#拼接sql条件的类

#region public enum Comparison public enum Comparison { /// <summary> /// 等于号 = /// …

c#
2015-07-13 834

#C#
C#用于Mysql操作的MySqlHelper类

using System; using System.Collections.Generic; using System.Linq; using System.Web; using…

c#
2015-07-10 351
1 4 5 6 7 8 24