delphi 2009编译包
我真的不明白。
尝试重新编译 qr5 包,对于这个 Delphi 来说是不可能的。
构建 QR5Run_Rad6.bpl,一切都很好。
当我安装 QR5Design_RAD6.bpl 时,出现错误消息
“由于您的计算机中缺少 qr5run_rad.bpl,因此无法运行该程序。请尝试再次安装程序来解决此问题。”
刚刚做了!
clean build 编译不能以任何顺序工作。关闭ide重新打开还是不行。
还剩下什么?
清理所有相关的 dcp 和 bpl
i truly don't get it.
trying to recompile the qr5 packages, and is impossible with this Delphi.
build the QR5Run_Rad6.bpl, everything is fine.
when i install QR5Design_RAD6.bpl an error message appears
"its not possible to run the program since qr5run_rad.bpl is missing in your computer. try again installing your program to solve this problem."
just did!
clean build compile doesn't work in any order. closed the ide and reopened , still doesn't work.
what else is left?
clean all related dcp and bpl
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QR5Design_RAD6.bpl>> qr5run_rad.bpl
更重要的是,需要在系统路径上找到 qr5run_rad.bpl 以便 IDE 找到它,以便设计时包可以使用它。
换句话说:您需要构建 qr5run_rad.bpl 以及 QR5Design_RAD6.bpl。并且您需要确保 qr5run_rad.bpl 最终位于系统路径上的文件夹中,而不仅仅是包含源和/或 dcu 的任何旧文件夹。
QR5Design_RAD6.bpl <> qr5run_rad.bpl
And more importantly, the qr5run_rad.bpl needs to be found on the systempath in order for the IDE to find it so it can be used by the design time package.
In other words: you need to build the qr5run_rad.bpl as well as the QR5Design_RAD6.bpl. And you need to make sure that the qr5run_rad.bpl ends up in a folder that is on your system path, not just any old folder where you have the sources and/or dcu's.
除了 Marjan 所写的之外:
Windows 在寻找DLL(或 BPL,它是一个 DLL):
Delphi 将 BPL 文件放在
C:\Documents and Settings\All Users\Documents\RAD Studio\8.0\Bpl
等目录中,安装 Delphi 时它会添加到您的 PATH 中。对于 Delphi 2009,在 Windows XP 计算机上该路径可能是C:\Documents and Settings\All Users\Documents\RAD Studio\6.0\Bpl
。——杰罗恩
In addition to what Marjan wrote:
Windows uses these places when looking for a DLL (or BPL, which is a DLL):
Delphi puts BPL files in a directory like
C:\Documents and Settings\All Users\Documents\RAD Studio\8.0\Bpl
which it adds to your PATH when Delphi is installed. For Delphi 2009, that Path would probably beC:\Documents and Settings\All Users\Documents\RAD Studio\6.0\Bpl
on a Windows XP machine.--jeroen