2016年5月3日

BAT-使用BAT方法删除目录下0KB文件

摘要: @Echo Off For /f "tokens=*" %%i in ('dir /a-d /b /s "*.*"') do ( If "%%~zi"=="0" (Del /q /f "%%i")) Pause 阅读全文

posted @ 2016-05-03 18:12 疯狂delphi 阅读(911) 评论(0) 推荐(0) 编辑

Delphi使用FindClass实现动态建立对像(有点像反射)

摘要: 相关资料:http://www.blogjava.net/nokiaguy/archive/2008/05/10/199739.html 阅读全文

posted @ 2016-05-03 11:01 疯狂delphi 阅读(784) 评论(0) 推荐(0) 编辑

Delphi使用TStringHash实现建立类(有点像反射)

摘要: 1 unit Unit1; 2 3 interface 4 5 uses 6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 7 Dialogs, StdCtrls, jpeg, ExtCtrls, 8 IniFiles;//TStrin... 阅读全文

posted @ 2016-05-03 10:47 疯狂delphi 阅读(794) 评论(0) 推荐(0) 编辑

导航