System.Runtime.InteropServices.COMException(0x800706BE):远程过程调用失败

时间:2016-05-04 02:03:57

标签: c# excel

当我尝试打开Excel文档时出现此错误

  

System.Runtime.InteropServices.COMException(0x800706BE):远程   程序调用失败。

我为我的公司构建了一个应用程序,它在每台计算机上运行良好,但在我的老板计算机上,当应用程序必须打开Excel文档时它停止工作。

我尝试更改组件服务中的权限,但它没有修复它。

我正在使用Windows 7。

Excel.Application excelApp = new Microsoft.Office.Interop.Excel.Application();
            object missing = Type.Missing;
            Excel.Range xlRange;
            Excel.Sheets xlSheets = null;
            Excel.Worksheet xlSheet = null;
            Excel.Workbook xlWorkbook = null;


 xlWorkbook = excelApp.Workbooks.Open(filePath, missing, missing, missing,
                                               missing, missing, missing, missing, missing, missing, missing,
                                               missing, missing, missing, missing);

0 个答案:

没有答案