码迷,mamicode.com
首页 > 其他好文 > 详细

时间计数器

时间:2014-07-29 20:46:32      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:blog   http   color   io   for   2014   art   cti   

bubuko.com,布布扣

{ 1 h=1*60 m=1*60*60 s=1*60*60*1000 hs=3600000hs}
function StartCount():string;
{$j+}
const
      h:Integer=0;
      m:Integer=0;
      s:integer=0;
{$j-}
begin
  inc(s);
  if s>=60 then
  begin
    Inc(m);
    s:=0;
  end;
  if m>=60 then
  begin
    Inc(h);
    m:=0;
  end;
  Result:=Format(‘%.2d:%.2d:%.2d‘,[h,m,s]);
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
label1.Caption:= StartCount();
end;
 
///倒计时
 
function dec1():string;
{$j+}
const i:Integer=60*5;
{$j-}
begin
   Dec(i);
   Result:=Format(‘剩余时间:%d‘,[i]);
end;

procedure TForm1.Timer1Timer(Sender: TObject);{$j+}
begin
     label1.Caption:=dec1;
end;


bubuko.com,布布扣
var
  h1: Integer = 0;
  m1: Integer = 0;
  s1: Integer = 0;

procedure TForm2.Timer1Timer(Sender: TObject);
begin
  if (h1 <= 0) and (m1 <= 0) and (s1 <= 0) then
    exit;

  Dec(s1);
  if s1 <= 0 then
  begin
    if (m1 > 0) or (h1 > 0) then
    begin
      Dec(m1);
      s1 := 60;
    end;
  end;
  if m1 < 0 then
  begin
    if h1 > 0 then
    begin
      Dec(h1);
      m1 := 60;
    end;
  end;

  Label1.Caption := Format(‘%.2d:%.2d:%.2d‘, [h1, m1, s1]);
end;




时间计数器,布布扣,bubuko.com

时间计数器

标签:blog   http   color   io   for   2014   art   cti   

原文地址:http://www.cnblogs.com/xe2011/p/3875874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!