次のコードで oledbReader を使用して、ウィンドウ エクスプローラーで既に開いている Excel シートを読み取ろうとしています。
System.Data.OleDb.OleDbConnection mCon;
mCon.ConnectionString = ("Provider=Microsoft.ACE.OLEDB.12.0;data source=" + openFileDialog1.FileName + ";Extended Properties=\"Excel 12.0;HDR=NO;IMEX=1\";");
strSelectQuery = "SELECT TOP 20 * FROM [$Sheet1]";
if (mCon.State == ConnectionState.Closed)
{
mCon.Open();
}
DataAdapter = new System.Data.OleDb.OleDbDataAdapter(strSelectQuery, mCon);
DataAdapter.Fill(mDTable);
DataAdapter.Dispose();
mCon.Close();
ここに書かれています
03-Aug-12 as 41124 // Excel Column has Genral format
07:29:19 as 0.31202546296 //Excel Column has Genral format
359307046362750 as 3.5930704636e+014 // Excel Column has Number Format with Decimal place 0
Excel ファイルが閉じている場合、正しい形式で値が読み取られます。なぜそうしているのですか?