Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to check the timer progress Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
19-Oct-02
Category
Algorithm
Language
Delphi 2.x
Views
85
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Jonas Bilinkevicius

I have a TTimer that is programmed to show a message box after 5 minutes. Is there 
a way to check how much of the timer interval has passed after a certain time?

Answer:

You will have to use a timer that occurs every second and increments a variable 
(even its own Tag property).
1   
2   TForm1.Timer1Timer(Sender: ...);
3   begin
4     Timer1.tag := Timer1.tag + 1;
5     if Timer1.tag = 300 then
6     begin
7       Timer1.enabled := false;
8       {If you leave, it will show a message every 5 minutes, resulting in many 
9   windows;
10      suspend counting for the period showing the message}
11      Timer1.tag := 0;
12      showmessage('5 Minutes!!!');
13      Timer1.enabled := true;
14    end;
15  end;
16  
17  TForm1.button1click(....);
18  begin
19    showmessage('Only ' + inttostr(Timer1.tag div 60) + ' minutes and ' +
20      inttostr(Timer1.tag mod 60) + ' seconds have passed');
21  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC