首页 > 编程 > Delphi > 正文

Delphi中延时

2019-11-18 18:13:29
字体:
来源:转载
供稿:网友
 

当前位置:Delphi园地 → 技巧文章 → 编程心得 → Delphi中延时
 
Delphi中延时
日期:2004年8月31日 作者: 
 
PRocedure Delay(msecs:integer);
var
FirstTickCount:longint;

begin

FirstTickCount:=GetTickCount;
repeat
application.ProcessMessages;
until ((GetTickCount-FirstTickCount) >= Longint(msecs));

end;

(出处:www.delphibbs.com


上一篇:Delphi中使用动态SQL的几个问题

下一篇:(Delphi)如和下载网络文件的例子

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注