摘要: 记录自己的学习之路. dev_update_window('off')dev_close_window () read_image (Image0, '1.bmp')dev_open_window_fit_image (Image0, 0, 0, -1, -1, WindowHandle)dev_d 阅读全文
posted @ 2021-01-27 15:32 percent10 阅读(817) 评论(0) 推荐(0) 编辑
摘要: VS2015 专业版下载链接http://download.microsoft.com/download/B/8/9/B898E46E-CBAE-4045-A8E2-2D33DD36F3C4/vs2015.pro_chs.iso VS2015 企业版下载链http://download.micros 阅读全文
posted @ 2020-05-20 16:34 percent10 阅读(2834) 评论(0) 推荐(0) 编辑
摘要: byte[] b_t = System.BitConverter.GetBytes(30); int i = System.BitConverter.ToInt32(b_t,0); 收藏 转自: https://blog.csdn.net/jiang1078/article/details/7057 阅读全文
posted @ 2020-04-20 10:53 percent10 阅读(4194) 评论(0) 推荐(1) 编辑
摘要: 转自:https://blog.csdn.net/c_fangfujiang/article/details/90668676 在VS2008、2010、2012等版本中均存在一个问题: 根据其它编程工具的设计经验,在一个项目中多个窗体内容相似,只需做好一个基础窗体,其它窗体直接复制粘贴修改类名后就 阅读全文
posted @ 2020-04-09 10:11 percent10 阅读(1044) 评论(1) 推荐(1) 编辑
摘要: txtBxMsg.BeginInvoke((MethodInvoker)delegate { if (txtBxMsg.Text.Length > 10000) txtBxMsg.Text = txtBxMsg.Text.Substring(txtBxMsg.Text.Length - 10000) 阅读全文
posted @ 2019-11-06 22:10 percent10 阅读(134) 评论(0) 推荐(0) 编辑
摘要: IF(`apformId` IS NULL,0,1) 阅读全文
posted @ 2019-04-04 13:32 percent10 阅读(180) 评论(0) 推荐(0) 编辑
摘要: dataGridView.BeginInvoke((MethodInvoker)delegate { dataGridView.Rows[newIdx].Cells["CameraID02"].Value = Convert.ToInt32(lstRecord[0].ToString().Trim( 阅读全文
posted @ 2019-04-03 13:42 percent10 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 自己验证收藏的代码, 用来备份代码, 内容全部来自网上, 时间有些久远, 因此没有标注出处. using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using Syst 阅读全文
posted @ 2018-12-27 17:26 percent10 阅读(196) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Xml; class Clas 阅读全文
posted @ 2018-12-27 17:19 percent10 阅读(119) 评论(0) 推荐(0) 编辑
摘要: C#导出Excel (NPOI方式) Demo 以及 完整DLL 阅读全文
posted @ 2018-12-27 11:18 percent10 阅读(327) 评论(0) 推荐(0) 编辑