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

相關文章
相關標籤/搜索