F1026 找不到文件:'Ucommon.dcu'
F1026 File not found: 'Ucommon.dcu'
我创建了我使用的简单 delphi 程序
MTable 在进行调试时向我显示此错误
并在
中标记 m_table
[DCC Error] Data.pas(7): F1026 File not found: 'Ucommon.dcu'
错误消息告诉您名为 Data
的单元使用另一个名为 Ucommon
的单元并且编译器无法找到 .pas 源文件或 .dcu 编译单元 Ucommon
。
您需要确保编译器可以访问 Ucommon
。通常这意味着:
- 正在将
Ucommon.pas
添加到项目中,或者
- 将包含
Ucommon.pas
的目录添加到项目的搜索路径中。
我创建了我使用的简单 delphi 程序
MTable 在进行调试时向我显示此错误
并在
[DCC Error] Data.pas(7): F1026 File not found: 'Ucommon.dcu'
错误消息告诉您名为 Data
的单元使用另一个名为 Ucommon
的单元并且编译器无法找到 .pas 源文件或 .dcu 编译单元 Ucommon
。
您需要确保编译器可以访问 Ucommon
。通常这意味着:
- 正在将
Ucommon.pas
添加到项目中,或者 - 将包含
Ucommon.pas
的目录添加到项目的搜索路径中。