随笔分类 -  Delphi

Delphi版本下载
摘要:Rad Studio Delphi 10.2 ftp://ftpd.embarcadero.com/download/radstudio/10.2/delphicbuilder10_2.iso http://altd.embarcadero.com/download/radstudio/10.2/d 阅读全文

posted @ 2017-03-22 09:13 rexhu 阅读(257) 评论(0) 推荐(0)

Delphi 10.1 Berlin 与 Delphi 10 Seattle 共存
摘要:以下安装环境是win7 64位 1. 安装Delphi10.1 Berlin 版本。 2.修改C:\Program Files (x86)\Embarcadero\Studio\18.0\cglm.ini文件 [Embarcadero License Management]RootDir=${MOD 阅读全文

posted @ 2016-09-10 10:12 rexhu 阅读(1827) 评论(0) 推荐(0)

MSBuild
摘要:MSBuild 用于编译 *.dproj文件 参考 阅读全文

posted @ 2016-08-16 11:25 rexhu 阅读(138) 评论(0) 推荐(0)

DataSnap
摘要:一. DataSnap REST - http://docwiki.embarcadero.com/RADStudio/Berlin/en/DataSnap_REST 1. URI Mapping: (js 如何访问 DataSnap Server) 1.1HTTP请求格式: http://my.s 阅读全文

posted @ 2016-07-07 17:44 rexhu 阅读(213) 评论(0) 推荐(0)

泛型
摘要:理解: 1.<T> 你要替换的参数类型。 2. 阅读全文

posted @ 2016-05-31 21:57 rexhu 阅读(71) 评论(0) 推荐(0)

FireDAC
摘要:http://docs.embarcadero.com/products/rad_studio/firedac/frames.html Access: http://docwiki.embarcadero.com/RADStudio/XE8/en/Connect_to_Microsoft_Acces 阅读全文

posted @ 2016-05-23 21:38 rexhu 阅读(185) 评论(0) 推荐(0)

类字段及类方法
摘要:1. 类字段, 使用class var 声明类字段。 Type TBall = class(TObject) class var shape: string; name: string; end; 2.类方法 - 类方法声明以class开始,其余和一般方法没有任何区别。class关键字不能省略。 - 阅读全文

posted @ 2016-05-19 12:38 rexhu 阅读(520) 评论(0) 推荐(0)

窗体可视化继承
摘要:1.新建工程 - 创建基类窗体,设置为不自动创建,保存 - 创建子类窗体,new - other - inheritable items - 选择基类窗体。 2.已有工程 - 引用基类单元 - 修改Class 基类 - 修改 dfm档,object -> inherited (关键) inherit 阅读全文

posted @ 2016-05-19 07:54 rexhu 阅读(193) 评论(0) 推荐(0)

检测delphi的程序的内存泄漏
摘要:在主窗体的FormCreate 加入ReportMemoryLeaksOnShutdown := True; 阅读全文

posted @ 2016-05-17 17:28 rexhu 阅读(877) 评论(0) 推荐(0)

导航