码迷,mamicode.com
首页 > Windows程序 > 详细

delphi延时函数详细说明

时间:2015-03-01 18:22:01      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

procedure   Delay(msec:integer); 
//延时函数,msec   为毫秒(千分之1秒) 
var 
FirstTickCount   :   real; 
begin 
  FirstTickCount   :=   GetTickCount(); 
  FirstTickCount   :=   FirstTickCount   +   msec; 

  While   FirstTickCount   >     GetTickCount()   do 
      Application.HandleMessage;   //关键在这里 

end; 

delay   (5000);   //   延时   5   秒

参见:http://blog.csdn.net/shao882

详见:100脚本网

 

delphi延时函数详细说明

标签:

原文地址:http://www.cnblogs.com/python001/p/4307256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!