Delphi 2009+ 的 System.SysUtils提供了一个类似.Net的StringBuilder,用于存储字符数组。 很多人不明白为什么要用TStringBuilder, Delphi中有string,有几乎所有TStringBuilder的功能函数, System.SysUtils中 Read More
posted @ 2017-05-14 23:49 findumars Views(493) Comments(0) Diggs(0)
http://blogs.embarcadero.com/davidi/2014/01/16/43281 There are many available Delphi and C++Builder components that will let you build cool desktop an Read More
posted @ 2017-05-14 23:45 findumars Views(550) Comments(0) Diggs(0)
Delphi有时候无法连接调试一些手机,解决方案: 1.安装Google USB Driver 2.通过设备管理器查看手机或平板USB的VID,PID 3.修改你的电脑上的android_winusb.inf,将第2步找到的VID,PID加到inf中。 例如: 详细请看: http://delphi Read More
posted @ 2017-05-14 23:44 findumars Views(2254) Comments(0) Diggs(0)
Delphi通过inherited 可以调用父类的方法,但是没有提供直接调用父类的父类的方法(爷爷类),通过变通的方式实现如下: 假设父类是TFather,爷爷类TGrand,调用爷爷类的Write方法: type TWriteProc=procedure of Object;var WritePr Read More
posted @ 2017-05-14 23:36 findumars Views(597) Comments(0) Diggs(0)
Delphi的基于接口(IInterface)的多播监听器模式(观察者模式 )http://www.cnblogs.com/hezihang/p/6083555.html利用RTTI实现Delphi的多播事件代理研究http://www.cnblogs.com/hezihang/p/3299481. Read More
posted @ 2017-05-14 23:33 findumars Views(336) Comments(0) Diggs(0)