DELPHI6中DSGNINTF.DCU找不到时的解决方法

https://www.cnblogs.com/gaodu2003/archive/2009/06/04/1495789.html

一、添加 lib\designide.dcp到控件的dpk文件的requires部分
二、在控件的pas源文件中凡是uses dsgnintf的地方改为
    uses designintf, designeditors 
三、加入搜索路径 
   X:\Program Files\Borland\Delphi6\Source\ToolsAPI 
   [X为Delphi6所在盘符]
四、将文件"DesignEditors.pas"中,implementation部分的Proxies隐掉 
    uses DesignConst, Consts, RTLConsts, Contnrs{, Proxies}; 
五、找到并把 
    while IsProxyClass(ComponentClass) do 
    改成 
    //while IsProxyClass(ComponentClass) do 
六、保存, 编译运行, OK html

相关文章
相关标签/搜索