- Delphi中Dynamic和Virtual方法的区别 2011-09-03 点击:1200 评论:0
- Delphi中ShellExecute调用打印文档 2011-09-03 点击:1596 评论:0
- Delphi使用一个函数或过程当做另一个函数的参数 2011-09-03 点击:665 评论:0
- Delphi中WM_COPYDATA和内存映射文件的比较 2011-09-03 点击:1161 评论:0
- Delphi中实现javascript getTime函数 2011-09-03 点击:593 评论:0
- Delphi中TFileTime、TSystemTime 及 DOS 时间 2011-09-03 点击:2469 评论:0
- Delphi中GetTickCount获取开机时间的代码 2011-09-03 点击:1329 评论:0
- Delphi中注册关联一个文件类型 2011-09-03 点击:866 评论:0
- Delphi中用ShellExecuteEx打开Recycle Bin 2011-09-03 点击:616 评论:0
- Delphi编写高精度计时器TStopWatch组件 2011-09-03 点击:1247 评论:0
dynamic就是它是动态方法,没有静态地址,所以速度慢一点 virtual是虚方法,如果在基类中不声明成虚方法的话,继承后,该方法会提示一警告信息,把基类中方法屏蔽掉了 ----...
打印指定格式文档:ShellExecute(Handle, 'print', PChar('c:\document.doc'), nil, nil, SW_HIDE) ;uses ...
type TFunctionParameter = function(const value : integer) : string;...function One(const v...
COPY_DATA是通过namedpipe进程内过数据的 而MapViewOfFile是在2G以上的空间开辟一个共享区共享数据的(dll都在这) 不同是COPY_DATA有数据co...
javascriptgetTime(new Date.getTime 方法) 返回指定的 Date 对象自 1970 年 1 月 1 日午夜(通用时间)以来的毫秒数。当比较...
//TSystemTime 是系统定义的结构, 一看就是最方便实用的那种, 但要占 16 个字节:TSystemTime = recordwYear: Word;wMonth: W...
var T1: Int64; T2,T3: Comp; T4: TDateTime;begin T1 := GetTickCount; {从开机到现在的毫秒数} T2 := Tim...
部分代码:procedure RegisterFileType(ExtName:String; AppName:String) ;var reg:TRegistry;begin r...
usesShlObj, ShellAPI, ... ; Place a TButton named 'OpenBinButton' on a form, handle its On...
示例代码:varsw : TStopWatch;elapsedMiliseconds : cardinal;beginsw := TStopWatch.Create() ;trys...