0

次のようなエラーに対して「C#」で例外を処理する方法->

Code:
Workbooks.Open(folderPath,filename,Excel.XlPlatform.xlWindows,"",""....)

"System.Runtime.InteropServices.COMException (0x80070BBC): Office has detected a problem with this file. To help protect your computer this file cannot be opened.
at Excel.Workbooks.Open"

エラーなしで動作するExcelはほとんどありませんが、エラーを超えるものはほとんどありません。いくつかの答えを提案してください。ありがとう。

4

1 に答える 1

0

次のコードを試して、Excel ファイルを開きます。

    String connString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + excelFilePath + ";Extended Properties=Excel 12.0;";
    // Create connection object by using the preceding connection string.
    OleDbConnection objConn = new OleDbConnection(connString);
    // Open connection with the database.
    objConn.Open();
于 2012-10-31T12:57:00.923 に答える