摘要: http://home.cnblogs.com/group/topic/40730.html datagridview定位到最后一行的方法 this.dataGridView2.CurrentCell = this.dataGridView2.Rows[this.dataGridView2.Rows 阅读全文
posted @ 2014-06-24 15:24 ChuckLu 阅读(308) 评论(0) 推荐(0)
摘要: http://chucklu.github.io/Blog/2014/12/24/git-svn.html 如何使用git和TortoiseGit来操作svn的版本库 1.首先clone svn的版本库,使用此命令git svn clone https:// ,如果是比较大的版本库的话,会耗时比较久 阅读全文
posted @ 2014-06-24 14:13 ChuckLu 阅读(908) 评论(0) 推荐(0)
摘要: 想要下载svn结果网上出来都是tortoisesvn正确的链接是源代码http://subversion.apache.org/安装包http://www.collab.net/downloads/subversion/ 阅读全文
posted @ 2014-06-24 13:14 ChuckLu 阅读(246) 评论(0) 推荐(0)
摘要: private void tspBtnExportExcel_Click(object sender, EventArgs e) { //暂时用来导出图片 string filePath = System.Environment.Curren... 阅读全文
posted @ 2014-06-23 15:33 ChuckLu 阅读(1559) 评论(2) 推荐(0)
摘要: VS2012不显示最近打开的项目解决方法,在"运行"中输入 " gpedit.msc"打开后在"用户配置"-"管理模板"-"任务栏和开始菜单"然后将用户配置-->管理模板-->不保留最近打开文档的历史 将此选项设置为禁用源地址:http://www.cnblogs.com/jiguixin/arch... 阅读全文
posted @ 2014-06-23 09:35 ChuckLu 阅读(916) 评论(0) 推荐(0)
摘要: 使用此处的控件 http://www.codeproject.com/Articles/18401/XPanderControls 注意事项 使用之前需要先添加winform自带的toolStripContainer1 this.toolStripContainer1.ContentPanel.Co 阅读全文
posted @ 2014-06-19 17:08 ChuckLu 阅读(6448) 评论(0) 推荐(0)
摘要: http://www.codeproject.com/Tips/350010/Saving-User-Settings-in-Winform-Application 外网上找的资料 winform提供自带的配置,最近查看了一下,数据到底保存到什么地方去了 主目录在这下面C:\Users\Admini 阅读全文
posted @ 2014-06-13 12:48 ChuckLu 阅读(6827) 评论(0) 推荐(0)
摘要: 1.调试程序出现这个错误an error occurred while validating解决方案:http://stackoverflow.com/questions/8648428/an-error-occurred-while-validating-hresult-8000000aopen ... 阅读全文
posted @ 2014-06-09 09:10 ChuckLu 阅读(2921) 评论(0) 推荐(0)
摘要: String类1.方法public int IndexOf( char value)报告指定 Unicode 字符在此字符串中的第一个匹配项的从零开始的索引。如果找到该字符,则为 value 的从零开始的索引位置;如果未找到,则为 -1。 2.public string Substring( int 阅读全文
posted @ 2014-05-27 16:32 ChuckLu 阅读(301) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Globalization;using System.IO;using System.Runtime.Comp... 阅读全文
posted @ 2014-02-19 13:05 ChuckLu 阅读(2323) 评论(0) 推荐(1)