我正在使用 Interop Excel,我的代码运行良好
class GeneralData
{ public static string excelPath = System.Windows.Forms.Application.StartupPath + @"\SteamProp";
public static ExcelApp._Application oExcel;
static ExcelApp.Workbooks oBooks;
public static ExcelApp._Workbook oBook;
static object oMissing = System.Reflection.Missing.Value;
// Function will be used in Main Form Load Method
public static void OpenExcelConnection()
{
oExcel = new ExcelApp.Application();
oExcel.Visible = false;
oBooks = oExcel.Workbooks;
oBook = oBooks.Open(excelPath, oMissing, oMissing,
oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing);
}
public static void ReleaseExcel()
{
try
{
oBook.Close(true, excelPath, oMissing);
oExcel.Quit();
System.Runtime.InteropServices.Marshal.FinalReleaseComObject(oBook);
System.Runtime.InteropServices.Marshal.FinalReleaseComObject(oBooks);
System.Runtime.InteropServices.Marshal.FinalReleaseComObject(oExcel);
oBook = null;
oBooks = null;
oExcel = null;
GC.Collect();
GC.WaitForPendingFinalizers();
}
catch
{ }
}
我制作了(OExcel)静态以从不同的形式使用它。我打开 (OExcel) 并使用它,然后通过调用 ReleaseExcel() 方法在最后关闭。代码工作正常,但如果从应用程序外部打开了任何不同的 excel 文件,则在 C# 应用程序中使用的文件会出现在用户面前,即使:
oExcel.Visible = false;
并且当调用此文件的 ReleaseExcel() 方法没有关闭时,如果我关闭了 C# 应用程序并再次打开它,则会引发下一个异常:
Microsoft Jet 数据库引擎无法打开文件“。它已被其他用户以独占方式打开,或者您需要权限才能查看其数据。
所以你能帮帮我吗?