Delphi的一个程序怎么才能设置执行多长时间? 5

Delphi7,几个字一闪一闪的程序,运行之后就停不下来了,怎么才能设置运行多长时间?例如就只让闪10次?程序如下:unitUnit1;interfaceusesWind... Delphi7,几个字一闪一闪的程序,运行之后就停不下来了,怎么才能设置运行多长时间?例如就只让闪10次?
程序如下:
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;

type
TForm1 = class(TForm)
Label1: TLabel;
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
private
{ Private declarations }
i:integer;
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Timer1Timer(Sender: TObject);
begin
i:=(i+1) mod 9;
with Label1 do
begin
case i of
0:Caption:='';
1:Caption:='D';
2:Caption:='De';
3:Caption:='Del';
4:Caption:='Delp';
5:Caption:='Delph';
6:Caption:='Delphi';
7:Caption:='Delphi ';
8:Caption:='Delphi 7';
end;
end;
end;

end.
展开
 我来答
linzhangqiang
2010-01-31 · 超过18用户采纳过TA的回答
知道答主
回答量:183
采纳率:0%
帮助的人:93.1万
展开全部
最简单的方法:新建一个 Timer
procedure TForm1.FormCreate(Sender: TObject);
begin
timer2.interval:= 5000; // Timer2的执行时间为5000毫秒
end;
procedure TForm1.Timer2Timer(Sender: TObject);
begin
timer1.interval:= 0; // 停止timer1并停止自身。
timer2.interval:= 0;
end;

5000毫秒你自己估计一下时间。
zhl_529
2010-01-29 · TA获得超过151个赞
知道小有建树答主
回答量:387
采纳率:72%
帮助的人:95.2万
展开全部
该问题你是不是提过?首先,你定义的变量应该定义成全局变量;

每执行一次Inc(i);
判断当i等于10时退出程序;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
丶叛逆宠儿丶
2010-01-29
知道答主
回答量:22
采纳率:0%
帮助的人:0
展开全部
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;

type
TForm1 = class(TForm)
Timer1: TTimer;
Label1: TLabel;
procedure Timer1Timer(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}
var
i:integer; // 设置全局变量

procedure TForm1.FormCreate(Sender: TObject);
begin
I:=0; // 把I值设置为0
end;

procedure TForm1.Timer1Timer(Sender: TObject);

begin
I := I + 1 mod 9 ;
with Label1 do
begin
case I of
0:Caption:='';
1:Caption:='D';
2:Caption:='De';
3:Caption:='Del';
4:Caption:='Delp';
5:Caption:='Delph';
6:Caption:='Delphi';
7:Caption:='Delphi ';
8:Caption:='Delphi 7';
end;
end;
end;
end.

以上是修改你的程序
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2010-02-01
展开全部
第十次时设置Timer1.Enable = False;就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
growtech
2010-02-01 · 超过42用户采纳过TA的回答
知道小有建树答主
回答量:162
采纳率:0%
帮助的人:111万
展开全部
对,楼上说的对。加入一个全局变量进行计数。
inc(runtimes)

ontimer事件中,加入if runtimes>10 then self.enabled:=false;
停止计时器动作。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式