1 つのワークシートを含む Excel ファイルがあります。私は MicroSoft.Office.Interop.Excel を使用してこのファイルを読み取り、さらに実行しています。
これが私のコードです:
connString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + strNewPath + ";Extended Properties=Excel 8.0;";
conn = new OleDbConnection(connString);
if (conn.State == ConnectionState.Closed)
conn.Open();
System.Data.DataTable dt = null;
dt = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
しかし、ワークシートはデータ テーブル オブジェクトにありません。