2009-10-27 142 views
0

我正在使用Borland C++ Builder 6.我已经安装了LMD Tool版本7和ABC for Delphi 6辅助版本(仅限运行时版本)。编译器错误帮助(E2209无法打开包含文件)

当我编译的软件单元,我收到以下错误消息:

 
[C++ Error] iss_hmi_gui_cached.h(58): E2209 Unable to open include file 'abcbtn.hpp' 
Full parser context 
C++ Error] iss_hmi_gui_cached.h(59): E2209 Unable to open include file 'abcctl32.hpp' 
Full parser context 
[C++ Error] iss_hmi_gui_cached.h(61): E2209 Unable to open include file 'abcexctl.hpp' 

我已搜查我的电脑
 
[C++ Error] Lmdcontrol.hpp(24): E2209 Unable to open include file 'Uxtheme.hpp' 
[C++ Error] Lmdcustomspeedbutton.hpp(22): E2209 Unable to open include file 'Uxtheme.hpp' 

,我找不到任何地方Uxtheme.hpp。

任何帮助表示赞赏。

在此先感谢

David。

回答

2

UxTheme.h是Windows SDK的一部分。 SDK附带更新版本的Visual Studio,但您可以从microsoft下载。您还必须告诉编译器在哪里可以找到SDK头文件和库文件。

0

好吧,它看起来像你的一些源文件丢失。

1

关于ABC的错误,你有没有建立与

Project|Options|Packages - Build with Runtime Packages

复选框选中?

你的软件包名称列表是否包含适当的运行时软件包?

相关问题