delphi7中怎样使用Timer这个组件?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi7中怎样使用Timer这个组件?相关的知识,希望对你有一定的参考价值。
例如我想每隔2秒就执行这段代码,该怎样实现 procedure TForm1.Button1Click(Sender: TObject);
begin
KillTask('YodaoDict.exe');
end;
这样这个定时器就会在程序启动时运行,如果你是想用按钮手动控制它,就可以将它的action下的enabled设为false,然后在某个按钮,比如button1的单击事件中写成
procedure TForm1.Button1Click(Sender: TObject);
begin
timer1.Enabled:=true;
end; 参考技术A 双击timer事件 输入KillTask('YodaoDict.exe');
timer 的interval设定为2000
timer的enable 设为true,ok
以上是关于delphi7中怎样使用Timer这个组件?的主要内容,如果未能解决你的问题,请参考以下文章