我正在Delphi XE2上安装TurboPower Orpheus。我从sourceforge.net那里得到了奥菲斯。Orpheus for Delphi XE2版本有四个Borland Package Libaries (BPLs):O408_r160.bpl、O408_d160.bpl、O408br160.bpl和O408bd160.bpl。
SourceForge没有文档解释这些库之间的差异。
能否有人为我解码文件名,这样我就可以确定将这四个库中的哪一个安装到Delphi XE2中。
谢谢!
发布于 2012-04-19 04:57:49
在TP Orpheus初始开源版本附带的Readme.txt中:
2. Package names
TurboPower Orpheus package names have the following form:
ONNN_KVV.*
| ||
| |+------ VV VCL version (30=Delphi 3, 35=C++Builder 3, 70=Delphi 7)
| +------- K Kind of package (R=runtime, D=designtime)
|
+----------- NNN Product version number (e.g., 406=version 4.06)
For example, the Orpheus runtime package files for Delphi 7 have
the filename O406_D70.*.
The runtime package contains the core functionality of the product and
is not installed into the IDE. The designtime package references the
runtime package, registers the components, and contains property
editors used in the IDE.注释:@WarrenP指出上面的文本包含一个错误(可能只是TurboPower的作者的一个打字错误);“例如”颠倒了方向-它应该是"The designtime package files for Delphi7“。
XE2是Delphi16版,所以它将是以r160和d160结尾的一对,d160是设计时包。我认为(但还没有机会确认) XE2对C++和DelphiBuilder包的要求略有不同,而br160和bd160指的是"B"uilder。我将尝试并验证这一点;我没有在这台机器上安装Orpheus,但我在我的办公室机器上安装了它(遗留的东西),所以我会在可能的时候更新。同时,我将从编译O408_r160.dproj开始,然后编译和安装O408_d160.dproj;我非常确定这些都是您需要的。
https://stackoverflow.com/questions/10216522
复制相似问题