zoukankan      html  css  js  c++  java
  • F1026 File not found DockForm.dcu

    xe6

    [dcc32 Fatal Error] ToolsAPI.pas(18): F1026 File not found: 'E:...DockForm.dcu'

    delphi,xe6,包含了DesignEditors, DesignIntf文件后,报错。ToolsAPI.pas里有DockForm的引用

    这要是安装控件,添加DesignIde.dcp到成功就可以了

    但现在普通的vcl app

    新建空白工程,加入下面代码,CB XE6中可以编译成功,Delphi XE6反倒不成功了

    #include <DesignEditors.hpp>
    class TFieldsProperty : public TStringProperty
    {
    public:
        void __fastcall GetValues(TGetStrProc Proc);
        TPropertyAttributes __fastcall GetAttributes(void);
    
    };
    View Code
    uses  DesignEditors
    type
      TFieldsProperty = class(TStringProperty)
      public
        procedure GetValues(Proc: TGetStrProc); override;
        function GetAttributes: TPropertyAttributes; override;
      end;
    View Code

    c++builder 6

    [Linker Fatal error] Unable to open file 'DESIGNEDITORS.OBJ'

    本人已经生成了文件,

    拷贝到D:Program Files (x86)BorlandCBuilder6SourceToolsapi,然后当前工程lib路径加入就可以了。

  • 相关阅读:
    java依赖注入
    Mac OS 中的 Python(和 NumPy)开发环境设置
    英语巴菲
    经济学原理
    You are beautiful
    大数据之tachyon(未完版)
    机器学习温和指南
    机器学习之回归
    Mac 命令
    批处理--批量打开程序&批量关闭程序
  • 原文地址:https://www.cnblogs.com/cb168/p/3874864.html
Copyright © 2011-2022 走看看