可能在designide60.bpl中,你Require这个Package试试看。

解决方案 »

  1.   

    控件是装在dclusr包中的,在包源文件中包括了designide,如果放designide进去,重新编译会出错。"Required package 'designide60' not found,
    我搜索一下,"designide60.bpl"在bin目录中。
      

  2.   

    NOTE FOR DELPHI 6 users: - DesignIntf.dcu not found. 1. When you compile, you may get a compile error:  File not found: 'DesignIntf.dcu'  Fix: Open Tools > Environment options > Library, and add a path to ToolsAPI, like this:   $(DELPHI)\Source\ToolsAPI2. After adding that file, if the compile stops in DesignEditors at:   uses DesignConst, Consts, RTLConsts, Contnrs, Proxies;  File not found: 'Proxies.dcu'.  Fix: a. In DesignEditors.pas, comment Proxies out, like this:  uses DesignConst, Consts, RTLConsts, Contnrs;//, Proxies;b. In DesignEditors, locate:  function TCustomModule.ValidateComponentClass(ComponentClass:
    TComponentClass):and comment out the code line:  while IsProxyClass(ComponentClass) do
        ComponentClass := TComponentClass(ComponentClass.ClassParent);
      

  3.   

    你是不是还要加一下Search Path。
      

  4.   

    Delphi5的Lib下是有这个文件的。