我正在尝试将 SAP2000 COM 导入到 Visual Studio 10 C++ 控制台应用程序项目中,以便可以在我的项目中使用 SAP2000 API。但是,每次我使用导入而不是使用 SAP2000.exe、SAP2000.tlb 或 SAP2000.dll 时,我都会不断收到错误消息:
“错误 9 错误 C1084:无法读取类型库文件:'SAP2000.tlb':加载类型库/DLL 时出错。c:\users\jgr208\documents\visual studio 2010\projects\sapapi\sapapi\sapapi.cpp 5 1 SAPapi ”。
有谁知道将 SAP2000 COM 导入 vs10 C++ 的任何可能解决方案(我已经让它与 C# 一起使用,但我更熟悉使用 C++)?我已经粘贴了下面的代码,很抱歉,因为我是新来的,所以格式不正确。
// SAPapi.cpp : Defines the entry point for the console application.
//
//standard header
#include "stdafx.h"
//import of SAP2000 COM (LINE WHERE ERROR ALWAYS OCCURS)
#import "SAP2000.tlb"
//empty main
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}