码迷,mamicode.com
首页 > 其他好文 > 详细

F1026 File not found DockForm.dcu

时间:2014-07-29 12:45:56      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   文件   io   

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反倒不成功了

bubuko.com,布布扣
#include <DesignEditors.hpp>
class TFieldsProperty : public TStringProperty
{
public:
    void __fastcall GetValues(TGetStrProc Proc);
    TPropertyAttributes __fastcall GetAttributes(void);

};
View Code
bubuko.com,布布扣
uses  DesignEditors
type
  TFieldsProperty = class(TStringProperty)
  public
    procedure GetValues(Proc: TGetStrProc); override;
    function GetAttributes: TPropertyAttributes; override;
  end;
View Code

 

F1026 File not found DockForm.dcu,布布扣,bubuko.com

F1026 File not found DockForm.dcu

标签:des   style   blog   http   color   os   文件   io   

原文地址:http://www.cnblogs.com/cb168/p/3874864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!