新建一個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就可以了