我正在尝试使用 C++/CLI 创建一个程序,该程序使用 Visual Studio 从 Excel 工作簿中读取一些数据。我已将 Microsoft.Office.Interop.Excel (v12) 添加到项目属性中的引用中。我的基本目标只是将单元格的值作为字符串获取(工作簿仅包含文本值)。我当前的代码如下(当然只包括主要部分):
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
using namespace Microsoft::Office::Interop::Excel;
start(void){
Microsoft::Office::Interop::Excel::Application^ exApp= gcnew Microsoft::Office::Interop::Excel::ApplicationClass();
String^ filename="e:\\test.xls";
Workbook^ wb = exApp->Workbooks->Open(filename, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing, Type::Missing);
Worksheet^ exWs = safe_cast<Worksheet^>(exApp->ActiveSheet);
int row=1;
int col=1;
String^ tmp=((Microsoft::Office::Interop::Excel::Range^)exWs->Cells[(System::Object^)row, (System::Object^)col])->Value2->ToString();
MessageBox::Show(tmp);
}
当我运行它时,它崩溃并出现以下错误:
An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in exc2.exe
Additional information: Old format or invalid type library. (Exception from HRESULT: 0x80028018 (TYPE_E_INVDATAREAD))
当我尝试打开工作簿时,xls 和 xlsx 文件都会发生这种情况(在以“Workbook^ wb = exApp->Workbooks->Open”开头的行 - 所以我什至无法检查其余部分是否正常工作)。请问有什么帮助,我错过了什么/做错了什么?
先感谢您。