Delphi安装控件时file not found:designIntf.dcu 时的解决方法

新建一个Proxies.pas文件
写入一下内容

unit Proxies;

interface

Function IsProxyClass(ComponentClass: TClass): Boolean;

implementation

Function IsProxyClass(ComponentClass: TClass): Boolean;
begin
  Result := True;
end;

end. 

然后放到 \Borland\Delphi7\Source\ToolsAPI
在把 \Borland\Delphi7\Source\ToolsAPI 添加到LibraryPath就可以了
posted @ 2011-04-13 12:02  许明吉博客  阅读(3112)  评论(0编辑  收藏  举报