vote up 0 vote down star

hey, what do i have to write, if i want date&time which updates itself? Label3.Caption := TimeToStr(Time) this just shows me the time, when i opened the program, but i want a time, that updates to the form every second (--> like a normal clock does).

flag

75% accept rate

4 Answers

vote up 11 vote down check

1) Drop a TTimer object on your form

2) Set its 'Interval' propert to 1000 and its 'Enabled' property to true.

3) Double click on it to create an OnTimer event handler. Modify it som it looks something like this:

procedure TForm1.Timer1Timer(Sender: TObject);
begin
    Label3.Caption := TimeToStr(Time)
end;

And there you have it...

link|flag
Nice answer, you beat me too it ;o) – stukelly Feb 8 at 16:21
Note that this won't update if the main thread is busy - e.g. loading or saving data, unless there is a call to Application.ProcessMessages as the windows timer message won't be processed. – Gerry Feb 8 at 22:12
@Gerry: True. But since using the VCL from multiple threads is out of the question, without Application.ProcessMessages() there is no way at all to keep anything in the GUI updated during long-running tasks. – mghie Feb 9 at 22:07
vote up 2 vote down

So drop a timer on the form, set to tick every 500ms or so, and write the time to your text time field in the event handler for the timer. You need to tick faster than smallest time interval you want to display. Note also that windows timers are pretty low priority, so if the CPU gets loaded, your timer might seem to "stick".

link|flag
vote up 4 vote down

You can use the Timer component to update the label caption every second.

  1. Drop a timer on your form.
  2. Set the Interval property to 500, which will update the caption every half second.
  3. Set the Enabled property to true.
  4. Double click on the timer and add the following code.

    Label3.Caption := TimeToStr(Time)

You can also use the FormatDateTime function, to change how time is displayed

link|flag
vote up 0 vote down

mh but why CAN i delete some of my questions? this one for example isnt deletable, but others i didnt need anymore, i deleted.

link|flag
You don't delete questions on SO, since one of its goals is to create a searchable knowledge base for programmers. – mghie Feb 9 at 11:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.