2009-10-27 143 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

複選框選中?

你的軟件包名稱列表是否包含適當的運行時軟件包?

相關問題