首页 > 代码库 > F1026 File not found DockForm.dcu
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);};
uses DesignEditorstype TFieldsProperty = class(TStringProperty) public procedure GetValues(Proc: TGetStrProc); override; function GetAttributes: TPropertyAttributes; override; end;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。