procedure TForm1.Button1Click(Sender: TObject); begin Timer1.Enabled:=true; end; procedure TForm1.Timer1Timer(Sender: TObject); begin Label1.Caption:=intTostr(strToint(Label1.Caption)-1); if strToint(Label1.Caption) = 0 then begin Timer1.Enabled:= false; end; end;