摘要: 方法一:Convert.ToDateTime(string) string格式有要求,必须是yyyy-MM-dd hh:mm:ss 方法二:Convert.ToDateTime(string, IFormatProvider) 方法三:DateTime.ParseExact() 阅读全文
posted @ 2018-07-18 16:59 恋上微笑的天使 阅读(914) 评论(0) 推荐(1) 编辑
摘要: /// /// 导出Excel /// /// 控件 DataGridView /// 中英文对照的标题 public static void ExportTasks(DataGridView mydgv, Dictionary dic) { ... 阅读全文
posted @ 2018-07-18 11:37 恋上微笑的天使 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1、建立一个文本文件 2、读文件 3、追加操作 阅读全文
posted @ 2018-07-18 11:36 恋上微笑的天使 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 在main中调用 示例二 阅读全文
posted @ 2018-07-18 11:33 恋上微笑的天使 阅读(298) 评论(0) 推荐(0) 编辑
摘要: public DataSet TransExcelToDataSet(string fileName, List sheetNames) { OleDbConnection objConn =null; DataSet data =new DataSet(); //创建读取excel连接 ... 阅读全文
posted @ 2018-07-18 11:31 恋上微笑的天使 阅读(888) 评论(0) 推荐(0) 编辑