摘要:
方法一:Convert.ToDateTime(string) string格式有要求,必须是yyyy-MM-dd hh:mm:ss 方法二:Convert.ToDateTime(string, IFormatProvider) 方法三:DateTime.ParseExact() 阅读全文
摘要:
/// /// 导出Excel /// /// 控件 DataGridView /// 中英文对照的标题 public static void ExportTasks(DataGridView mydgv, Dictionary dic) { ... 阅读全文
摘要:
1、建立一个文本文件 2、读文件 3、追加操作 阅读全文
摘要:
在main中调用 示例二 阅读全文
摘要:
public DataSet TransExcelToDataSet(string fileName, List sheetNames) { OleDbConnection objConn =null; DataSet data =new DataSet(); //创建读取excel连接 ... 阅读全文