摘要:
记录自己的学习之路. 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 阅读全文
摘要:
VS2015 专业版下载链接http://download.microsoft.com/download/B/8/9/B898E46E-CBAE-4045-A8E2-2D33DD36F3C4/vs2015.pro_chs.iso VS2015 企业版下载链http://download.micros 阅读全文
摘要:
byte[] b_t = System.BitConverter.GetBytes(30); int i = System.BitConverter.ToInt32(b_t,0); 收藏 转自: https://blog.csdn.net/jiang1078/article/details/7057 阅读全文
摘要:
转自:https://blog.csdn.net/c_fangfujiang/article/details/90668676 在VS2008、2010、2012等版本中均存在一个问题: 根据其它编程工具的设计经验,在一个项目中多个窗体内容相似,只需做好一个基础窗体,其它窗体直接复制粘贴修改类名后就 阅读全文
摘要:
txtBxMsg.BeginInvoke((MethodInvoker)delegate { if (txtBxMsg.Text.Length > 10000) txtBxMsg.Text = txtBxMsg.Text.Substring(txtBxMsg.Text.Length - 10000) 阅读全文
摘要:
IF(`apformId` IS NULL,0,1) 阅读全文
摘要:
dataGridView.BeginInvoke((MethodInvoker)delegate { dataGridView.Rows[newIdx].Cells["CameraID02"].Value = Convert.ToInt32(lstRecord[0].ToString().Trim( 阅读全文
摘要:
自己验证收藏的代码, 用来备份代码, 内容全部来自网上, 时间有些久远, 因此没有标注出处. using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using Syst 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Xml; class Clas 阅读全文
摘要:
C#导出Excel (NPOI方式) Demo 以及 完整DLL 阅读全文