新建一个Proxies.pas文件 写入一下内容 unit Proxies; interface Function IsProxyClass(ComponentClass: TClass): Boolean; implementation Function IsProxyClass(ComponentClass: TClass): Boolean; begin Result := True; end; end. 然后放到 /Borland/D
新建一个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就可以了