展开全部
说明:
1.建立一个新的Project
2.在Form上放一个TLabel 和 TTimer
3.定义Form的Create事件和TTimer的OnTimer事件,拷贝相应的处理程序即可
var
Form1: TForm1;
tCount:integer;
implementation
{$R *.DFM}
procedure TForm1.Timer1Timer(Sender: TObject);
var
h,n,s:string;
begin
Dec(tCount);
h := IntToStr(tCount div 3600); // 小时
n := IntToStr((tCount div 60) mod 60); // 分钟
s := IntToStr(tCount mod 60); // 秒
if Length(h)=1 then h := '0'+h;
if Length(n)=1 then n := '0'+n;
if Length(s)=1 then s := '0'+s;
Label1.Caption := '离xxx还有:'+h+':'+n+':'+s;
if tCount=0 then begin // 倒计时结束
Timer1.Enabled := False;
// 插入你的代码
end;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
tCount := 100*60; // 100分钟
Timer1.Interval := 1000; // 1秒钟触发一次
Timer1.Enabled := True;
end;
1.建立一个新的Project
2.在Form上放一个TLabel 和 TTimer
3.定义Form的Create事件和TTimer的OnTimer事件,拷贝相应的处理程序即可
var
Form1: TForm1;
tCount:integer;
implementation
{$R *.DFM}
procedure TForm1.Timer1Timer(Sender: TObject);
var
h,n,s:string;
begin
Dec(tCount);
h := IntToStr(tCount div 3600); // 小时
n := IntToStr((tCount div 60) mod 60); // 分钟
s := IntToStr(tCount mod 60); // 秒
if Length(h)=1 then h := '0'+h;
if Length(n)=1 then n := '0'+n;
if Length(s)=1 then s := '0'+s;
Label1.Caption := '离xxx还有:'+h+':'+n+':'+s;
if tCount=0 then begin // 倒计时结束
Timer1.Enabled := False;
// 插入你的代码
end;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
tCount := 100*60; // 100分钟
Timer1.Interval := 1000; // 1秒钟触发一次
Timer1.Enabled := True;
end;
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询