Delphi 4 错误:- 找不到文件:'htmlcons.inc'
我试图运行/编译/构建/项目(Delphi 4)。
我也尝试过这个方法 http://www.cryer.co.uk/brian/delphi/error_fnfCDO_TLB。 htm
错误
"file not found:'htmlcons.inc'"
它始终显示出束手无策的
,该怎么办? 请帮忙。
感谢致敬 -瓦斯
I was trying to run/compile/build/ the Project (Delphi 4).
I tried out this method also
http://www.cryer.co.uk/brian/delphi/error_fnfCDO_TLB.htm
It consistently shows to an error
"file not found:'htmlcons.inc'"
at wits end ,what to do?
Kindly help.
Thanks and Regards
-Vas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
htmlcons.inc 是“HTML 查看器组件”的一部分(免费),可从 http://pbear.com/。
它基本上是一个基于 Delphi 的 HTML 渲染引擎。
htmlcons.inc is part of the "HTML Viewer Components" available (for free) from http://pbear.com/.
It is basically a Delphi based HTML rendering engine.
您在其他问题中提到,您在使用 PBear 组件时遇到了问题,更新库路径修复了该问题。 这也解决了这个问题吗?
You mentioned in your other question that you were having trouble with the PBear components, and updating your library path fixed it. Did that also fix this problem?
在项目搜索路径中添加 htmlcons.inc 文件的路径。
编辑:
我没有 Delphi 4 来检查如何做到这一点。
您应该在项目选项“搜索路径”或全局“库路径”中添加 htmlIcons.inc 所在位置的完整文件夹路径“C:\Program Files\PBear\HTMLComponents\Thtml\Package”。
Delphi 2009 中的项目选项:
- 菜单:项目| 选项| 德尔福编译器| 搜索路径
Delphi 2009 中的 全局选项:
- 菜单:工具| 选项| 环境选项 | 德尔福选项 | Win32 库 | 库路径
它将与这两个选项中的任何一个一起使用,如果您更改全局,它将适用于任何项目,或者如果您仅添加到正在编译的项目选项,则可以添加相对路径。
Add the path of htmlcons.inc file, in the project search path.
Edit:
I don't have Delphi 4 to check what is the way to do that.
You should add the full folder path "C:\Program Files\PBear\HTMLComponents\Thtml\Package" where htmlIcons.inc is, in the project option "Search Path", or in the Global "Library Path".
Project Options in Delphi 2009:
- Menu: Project | Options | Delphi Compiler | Search Path
Global Options in Delphi 2009:
- Menu: Tools | Options | Environment Options | Delphi Options | Library Win32 | Library path
It will work with any of both option, if you change global, it will be there for any project, or if you add only to the project option you are compiling, you can add a relative path.