摘要:
在 使用modbus tcp 协议读取plc 数据的时候会有大小端问题,大小端数据排列有四种情况: 1.Float Big-endian 字节顺序:A B C D2. Float Little-endian 字节顺序:BADC3. Float Big-endian byte swap 字节顺序:DC 阅读全文
摘要:
使用delegate 关键字定义事件的委托 public delegate void Notify(); public event Notify ProcessCompeleted; public class EventSample{ public delegate void Notify(); p 阅读全文
摘要:
创建一个winform 项目。 同一个类中。创建一个用户控件类 创建一个组合搜索框控件。 // 创建完成后,在 工具栏中选择 工具 选项 windows窗体设计器 右侧 工具箱--自动填充工具箱 选择为true. 关闭主程序设计页面,重新生成解决方案。就可以使用自定义控件了。 为空间添加自定义属性。 阅读全文
摘要:
// like 模糊查询 跟在表名后 % 放置在条件前 为以结尾模糊查询,放在中间为包含条件参数的模糊查询,后面为开头模糊查询 string sql = "select * from class"; SqlConnectionStringBuilder sb = new SqlConnectionS 阅读全文
摘要:
字符串拼接的几种方式: 1. 使用@ 符 string a1 = ""; string a2 = ""; string sql = @"select * from *** where id='" + a1 + @"' ,name='" + a2 + " ' "; string sql = @"sel 阅读全文
摘要:
// 设计连接数据库的字符串方法 using System.Data.SqlClient; 使用sqlConnectionStringBuilder类 SqlConnectionStringBuilder sc = new SqlConnectionStringBuilder (); sc.Data 阅读全文
摘要:
使用vs2019 创建winform项目 详细代码如下: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Sy 阅读全文