我正在将C#dotnet v1.1应用程序升级到3.5,并且第一次在3.5下运行时遇到此错误。这是一个在生产中快乐地运行多年的应用程序,在1.1的桌面上运行,所以我假设在Excel和1.1之间的excel COM的API中有所改变
完全例外:
InvalidClassCastException was unhandled
Unable to cast COM object of type 'System.__ComObject' to interface type 'Excel._Workbook'.
此操作失败,因为由于以下错误,IID为“{000208DA-0000-0000-C000-000000000046}”的接口的COM组件上的QueryInterface调用失败: 没有支持这样的接口(来自HRESULT的异常:0x80004002(E_NOINTERFACE))。
代码:
Excel.ApplicationClass excel = new Excel.ApplicationClass();
excel.Application.Workbooks.Add(true);
((Excel.Range)excel.Cells[1,1]).EntireRow.Font.Bold = true;
excel.Cells[1,1] = "col a";
excel.Cells[1,2] = "col b";
excel.Cells[1,3] = "col c";
// here loop and populate rows, nothing special just as above, all strings
excel.Visible = true;
Excel.Worksheet worksheet = (Excel.Worksheet)excel.ActiveSheet;
((Excel._Workbook)worksheet).Activate();
我该如何解决这个问题?我尝试在MSDN Social建议中将Excel.ApplicationClass重命名为Excel.Application this post,但没有运气:(
答案 0 :(得分:1)
结果是答案是在WorkSheet上调用activate,而不是WorkBook,oops; - )
((Excel._Worksheet)worksheet).Activate();