delphi真正实现延时暂停功能

Posted xenli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi真正实现延时暂停功能相关的知识,希望对你有一定的参考价值。

用delphi怎么实现延时功能?在delphi中有一个sleep()函数是用来暂停线程的,使用了它好像和死掉了似得,不好用,这么简单的延时动作用Timer控件有显得复杂了。
下面给大家分享一个真正好用的延时功能:

procedure delay(MSecs:LongInt);
var
  FirstTickCount,Now:LongInt;
begin
  FirstTickCount:=GetTickCount();
  repeat
    Application.ProcessMessages;
    Now:=GetTickCount();
  until (Now - FirstTickCount >=MSecs)or(Now<FirstTickCount);
end;
//调用
delay(1000);//延时一秒

 

以上是关于delphi真正实现延时暂停功能的主要内容,如果未能解决你的问题,请参考以下文章

C# 延时处理或者暂停执行

delphi button如何实现按键按下暂停 再按下启动

Delphi7:快捷键

Delphi创建Windows快捷方式

Delphi创建Windows快捷方式

lua脚本延迟10秒怎么写