一、单表头 1 #region 导出 2 if (this.dgvInfo.Rows.Count > 0) 3 { 4 SaveFileDialog saveFileDialog = new SaveFileDialo...
分类:
其他好文 时间:
2014-07-10 12:12:06
阅读次数:
270
本文转载:http://www.cnblogs.com/hailexuexi/archive/2012/04/23/2466398.html代码:#region DataGridVeiw Style System.Windows.Forms.DataGridViewCellStyle dataGri...
#region 单个文件上传至服务器/// /// 单个文件上传至服务器/// /// 接收文件资源的URI, 例如: http://xxxx/Upload.aspx?UID=11111/// 要发送的资源文件, 例如: @"D:\workspace\WebService 相关.doc/// 返回文...
分类:
其他好文 时间:
2014-07-10 09:59:22
阅读次数:
201
创建类WebServiceHelper: public class WebServiceHelper { #region 动态调用WebService动态调用地址 /// /// 动态调用web服务 //...
分类:
Web程序 时间:
2014-07-07 18:05:16
阅读次数:
179
Problem Description:Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in th...
分类:
其他好文 时间:
2014-07-07 16:20:26
阅读次数:
216
1、const用于类成员变量定义,一旦定义且不能改变其值。define定义全局常量,在任何地方都可以访问。2、define不能在类中定义而const可以。3、const不能在条件语句中定义常量if (...) { const FOO = 'BAR'; // invalid } but ...
分类:
Web程序 时间:
2014-07-07 15:11:52
阅读次数:
210
提示Error 1324.The path My Pictures contains an invalid character.解决办法:新建一个文件夹,123, 设置 我的文档文件夹 目录指向 “C:\123” 即可。-----------------------------相关文章 http:/...
分类:
其他好文 时间:
2014-07-07 15:02:50
阅读次数:
211
Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded region...
分类:
其他好文 时间:
2014-06-30 15:03:43
阅读次数:
209
在eclipse里导入的时候报错,提示 Invalid project description。
解决办法:
在eclipse的workspace中,找到.metadata文件夹,依次打开------->.plugins文件夹------->org.eclipse.core.resources文件夹------->.projects文件夹
找到你的项目包名一样的文件夹,删除它。
然后从...
分类:
移动开发 时间:
2014-06-30 09:14:46
阅读次数:
207
#region 将ENTER键转换为TAB protected override void OnKeyUp(System.Windows.Forms.KeyEventArgs e) { base.OnKeyUp(e); if (...