Converting Delphi 7 property editor to Delphi XE2

别等时光非礼了梦想. 提交于 2019-12-05 19:55:17

DesignIntf, DesignEditors, DesignMenus, DesignWindows are part of DesignIDE.bpl and is found in \Embarcadero\RAD_Studio\9.0\lib\win32\release\designide.dcp. But there is no designide.dcp for 64bit which is why it throws an error when compiling a 64bit package that references these units.

There is no 64bit version of DesignIDE because it is for a design time package and design time packages are 32 bit only (remember Delphi IDE is still only 32 bits). So always set your design time package as 32bit, not 64bit. :)

Mike

menjaraz

The DockForm.pas source code is available neither in Delphi XE nor in Delphi XE2.

You may try this accepted answer posted on SO applying to similar issue on Delphi 2010.

Presumably, it is compiled and included within some package already distributed with Delphi XE2.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!