摘要:
//全局唯一的单例 public static Form2 FrmSingle=null; private Form2() { InitializeComponent(); } public static Form2 GetSingle() { if (FrmSingle == null) { Fr 阅读全文
摘要:
根据长度创建数组; byte j = 0x00; List<byte> iList = new List<byte>(); for (int i = 0; i < 18; i++) { Random rd = new Random(); do { j = rd.Next(1, 11); } whil 阅读全文
摘要:
PLC读取数据高低位交换,批量保存到list集合,方便调用。 private void button1_Click(object sender, EventArgs e) { label1.Text = null; ushort[] nums = new ushort[] { 12, 34, 56, 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Li 阅读全文
摘要:
C#从SQL server数据库中读取l图片和存入图片 本实例主要介绍如何将图片存入数据库。将图片存入数据库,首先要在数据库中建立一张表,将存储图片的字段类型设为Image类型,用FileStream类、BinaryReader把图片读成字节的形式,赋给一个字节数组,然后用ADO.SqlComman 阅读全文
摘要:
string dbConStr = ConfigurationManager.ConnectionStrings["dbConStr"].ConnectionString; using (SqlConnection conn = new SqlConnection(dbConStr)) { usin 阅读全文
摘要:
MSSQL数据库查询SQL语句拼接 string dbConStr = ConfigurationManager.ConnectionStrings["dbConStr"].ConnectionString; string sqlText = "SELECT * FROM UserInfo"; Li 阅读全文
摘要:
C# winform只允许程序运行一个 ,修改主入口文件。 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Fo 阅读全文
摘要:
c#定时关机代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usin 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文