异常处理汇总-开发工具 http://www.cnblogs.com/dunitian/p/4522988.html 修复VirtualBox "This kernel requires the following features not present on the CPU: pae Unabl Read More
posted @ 2017-05-15 18:19 findumars Views(378) Comments(0) Diggs(0)
Delphi 2009+ 的 System.SysUtils提供了一个类似.Net的StringBuilder,用于存储字符数组。 很多人不明白为什么要用TStringBuilder, Delphi中有string,有几乎所有TStringBuilder的功能函数, System.SysUtils中 Read More
posted @ 2017-05-14 23:49 findumars Views(487) 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(548) 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(2249) 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(594) Comments(0) Diggs(0)