Delphi安装控件时file not found:designIntf.dcu 时的解决方法
新建一个Proxies.pas文件
写入一下内容
unitProxies;
interface
FunctionIsProxyClass(ComponentClass: TClass): Boolean;
implementation
FunctionIsProxyClass(ComponentClass: TClass): Boolean;
begin
Result := True;
end;
end.
然后放到\Borland\Delphi7\Source\ToolsAPI
在把\Borland\Delphi7\Source\ToolsAPI 添加到LibraryPath就可以了
写入一下内容
unit
interface
Function
implementation
Function
begin
end;
end.
然后放到
在把