NPOI操作excel的利器,03 和 07 都支持
07的现在NPOI 可以直接读。是最新版的Npoi支持的吗
最新是可以支持07的,需要.NET 4.0 如果我现在用的vs2008 3.5 客户端没有安装office读取excel 不用Npoi 有其它方法处理吗
处理Excel可以使用NPOI
NPOI 支持office2007之后的版本,是最新的NPOI2.0版本吗 要简单的demo给我学习下啊 给链接就行啊
二楼说的对
NPOI 支持office2007之后的版本,是最新的NPOI2.0版本吗
有链接嘛 网上我找到的都是支持2003版本的
二楼说的对
NPOI 支持office2007之后的版本,是最新的NPOI2.0版本吗
有链接嘛 网上我找到的都是支持2003版本的
private void ImportData() { string StrConn; StringBuilder sb = new StringBuilder();
sb.Append("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="); sb.Append(FilePath); sb.Append(";Extended Properties='Excel 8.0;HDR=No; IMEX=1'"); StrConn = sb.ToString(); DataTable tempTable; OleDbConnection ConnExcel = new OleDbConnection(StrConn); try { ConnExcel.Open(); System.Data.DataTable schemaTable = ConnExcel.GetOleDbSchemaTable (System.Data.OleDb.OleDbSchemaGuid.Tables, null); string tableName = schemaTable.Rows[0][2].ToString().Trim(); string strSql = "select * from[" + tableName + "]"; OleDbDataAdapter AdptExcel = new OleDbDataAdapter(strSql, ConnExcel); DataSet ds = new DataSet(); AdptExcel.Fill(ds, "Excel"); ConnExcel.Close(); tempTable = ds.Tables["Excel"]; //return; } catch (Exception e) { MyShowMessageBox.Show(this, "请先解密表格"); return; }
注意看我的问题啊