上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: OpenFileDialog控件的基本属性InitialDirectory:对话框的初始目录 Filter: 获取或设置当前文件名筛选器字符串,例如,"文本文件(*.txt)|*.txt|所有文件(*.*)||*.*" FilterIndex 在对话框中选择的文件筛选器的索引,如果选第一项就设为1 阅读全文
posted @ 2021-11-12 15:40 212的s 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 安装BarTender 软件后,会注册一个COM 然后在项目中添加BarTender COM 引用 BarTender模板中的条码右键属性-数据源类型-嵌入的数据-名称(比如设置为 barcode public class MyBarTender { BarTender.Application bt 阅读全文
posted @ 2021-11-12 15:39 212的s 阅读(877) 评论(0) 推荐(0) 编辑
摘要: public static float GetDpiX() { System.Windows.Forms.Panel p = new System.Windows.Forms.Panel(); System.Drawing.Graphics g = System.Drawing.Graphics.F 阅读全文
posted @ 2021-11-12 15:39 212的s 阅读(158) 评论(0) 推荐(0) 编辑
摘要: public static string ExportAOrder(ExportData data) { var cellHeard = new Dictionary<string, string> { { "sort","序号"}, { "modeName","型号名称"}, { "modeCod 阅读全文
posted @ 2021-11-12 15:38 212的s 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 1.查看本机ipipconfig 2.查看本机端口使用情况netstat -a 3.查看局域网所有iparp -a 4.查找并关闭进程 C:\WINDOWS\system32>tasklist|findstr 设备设备aa.exe 23000 Console 1 75,120 K C:\WINDOW 阅读全文
posted @ 2021-11-12 15:36 212的s 阅读(14) 评论(0) 推荐(0) 编辑
摘要: richTextBox1.Select(index, "str1".Length); richTextBox1.SelectionColor = Color.Red; 阅读全文
posted @ 2021-11-12 15:34 212的s 阅读(385) 评论(0) 推荐(0) 编辑
摘要: CREATE trigger 触发器名 on 表名 for update,delete as set nocount on create table #t(EvebtType varchar(60),Parameters int,EventInfo varchar(2000)) declare @i 阅读全文
posted @ 2021-11-12 15:33 212的s 阅读(112) 评论(0) 推荐(0) 编辑
摘要: //要序列化的类型 [Serializable] public class myclass { public string Name {get;set;} } //序列化 var my = new myclass(); my.Name="1234"; my.SerializeSave("D:\\da 阅读全文
posted @ 2021-11-12 15:32 212的s 阅读(13) 评论(0) 推荐(0) 编辑
摘要: using (var db = new dbEntities()) { //第一个坑,需要手动open db.Database.Connection.Open(); using (var tran = db.Database.Connection.BeginTransaction()) { //第二 阅读全文
posted @ 2021-11-12 15:31 212的s 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 实现向com1发数据,com2能收到 教程https://www.liangzl.com/get-article-detail-137485.html 串口工具官网www.eltima.com/products/vspdxp 阅读全文
posted @ 2021-11-12 15:28 212的s 阅读(46) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页