DataTable比List读取的性能高很多

摘要: DataTable比List读取的性能高很多;搜索速度上HashTable比DataTable高。DataTable数字主键比字符串索引高。先导数据后建主键。分页 RowNumber比TopMax稳定而且性能高。 阅读全文
posted @ 2022-06-30 11:53 qq1151219115 阅读(382) 评论(0) 推荐(0) 编辑

SQL row_number()

摘要: select *from (select *,row_number()over(order by ID desc) as row from t_test where id < 5000)twhere row<=100 阅读全文
posted @ 2022-06-23 16:32 qq1151219115 阅读(3) 评论(0) 推荐(0) 编辑

禁用ListView中的CheckBoxes

摘要: bool preventCheck = true; private void listView1_ItemCheck(object sender, ItemCheckEventArgs e) { if (preventCheck) // for example: !string.IsNullOrEm 阅读全文
posted @ 2022-05-27 09:42 qq1151219115 阅读(16) 评论(0) 推荐(0) 编辑

C# Color Control

摘要: Control Color设置 lblLanguage.BackColor = Control.DefaultBackColor; lblLanguage.BackColor = Color.FromKnownColor(KnownColor.Control); 阅读全文
posted @ 2021-03-09 17:13 qq1151219115 阅读(298) 评论(0) 推荐(0) 编辑

System.Reflection.TargetInvocationException

摘要: 用 mAcqFifoTool1 = (CogAcqFifoTool)(CogSerializer.LoadObjectFromFile()加载相机vpp程序时,出现如下错误, 后来修改生成平台 AnyCpu-> X64问题解决。 visionpro “System.Reflection.Target 阅读全文
posted @ 2020-05-28 08:36 qq1151219115 阅读(412) 评论(0) 推荐(0) 编辑

ZedGraph X轴为时间

摘要: Random ran = new Random(); PointPairList list = new PointPairList(); LineItem myCurve; this.zedGraphControl1.GraphPane.Title.Text = "动态折线图"; this.zedG 阅读全文
posted @ 2020-04-12 12:45 qq1151219115 阅读(510) 评论(0) 推荐(0) 编辑

c#怎样让picturebox出现滚动条

摘要: 将picturebox放到一个panel控件里面,然后设置panel控件的ArrowScroll属性为true,再设置picturebox的SizeMode属性为AutoSize 这样当图片长或宽超出panel就会自动出现滚动条 这里需要注意的是picturebox不能选择在父容器中停靠,否则没有滚 阅读全文
posted @ 2019-06-23 21:01 qq1151219115 阅读(222) 评论(0) 推荐(0) 编辑

C#动态加载dll,dll目录指定

摘要: <?xml version="1.0"?><configuration><startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup> <runtime> <assemblyBinding 阅读全文
posted @ 2019-05-29 19:20 qq1151219115 阅读(238) 评论(0) 推荐(0) 编辑

RS485转RS232

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO.Ports; namespace serial { public class ModBus { /// /// modbus状态 /... 阅读全文
posted @ 2019-05-28 14:12 qq1151219115 阅读(477) 评论(0) 推荐(0) 编辑

圆度

摘要: 阅读全文
posted @ 2019-04-28 09:48 qq1151219115 阅读(243) 评论(0) 推荐(0) 编辑