摘要:
GridView里FocusedRowHandle会设置最左侧小三角的位置,而SelectRow会设置反选的行。 要设置新的选择行时,要先执行UnselectRow(0),不然总默认反选第1行。 gridView1.UnselectRow(0); gridView1.FocusedRowHandle 阅读全文
摘要:
1、当我在界面中有多个表格控件时,只有最下方有一套增删改的按钮,我就需要记录最后一次获得焦点的是哪个控件 2、在每个gridContrl上添加一个MouseDown事件。这个事件把变量存起来。 阅读全文
摘要:
DEV控件在工具箱中消失处理方法 开始-->程序-->Developer Express v2009 vol 3(依据版本不同)-->Components-->Tools-->ToolboxCreator 1、点击一行选择完整一行 Run Designer->View->OptionsBehavio 阅读全文
摘要:
今天在网上查了下折叠式菜单,资源倒是不少,但是实现过程极为繁琐,看到都怕怕,ctrl+c的勇气都没有,于是自己尝试着弄一下,没想到还真的给整出来了,最终效果还蛮不错的。需要借助panel控件,先搭出一个框架来才能进行后续操作,就以button+panel举个例子:1.在开始UI设计时,先按一个but 阅读全文
摘要:
这个程序是用来把excel文件打开,按照某种规则替换excel中的特定内容,然后保存关闭。 1、当程序写好以后,debug中有文件 2、 (1)其中【zh-CHS】是个空文件。 (2)【stdole.dll】经查没什么作用。(3)【.pdb】也没啥用。 3、我希望实现的效果是exe文件把dll包进去 阅读全文
摘要:
using Microsoft.Office.Interop.Excel; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; u 阅读全文
摘要:
private void CreateOneRiZhi(string newPath, string theDate, string info) { System.IO.File.Copy(System.Windows.Forms.Application.StartupPath + @"\templ 阅读全文
摘要:
Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.Application(); Workbooks wbks = app.Workbooks; object missing = Sy 阅读全文
摘要:
1、在nuget包中找confuserex,如果没有的话则安装,有的话直接找到C:\Users\Administrator\.nuget\packages\confuserex\0.6.0\tools 2、双击ConfuserEx.exe 3、BaseDirectory 选择所需混淆文件所在的目录 阅读全文
摘要:
1. Create a new project in Visual Studio as in the following: 2. I created a simple Hello World application (MainForm.cs) that will be shown after the 阅读全文