Re: timer


Posted by Roland on April 26, 2000 at 13:35:33:

In Reply to: timer posted by Keith Davidson on April 25, 2000 at 20:33:24:

Use the Timer On Timer event like this :

///////////////////////////////////////
// OnTimer event
// - Executes for every timer tick
// Time between ticks are set with the TTimers Interval prop
////////////////////////////////////////
procedure TForm1.Timer1Timer(Sender: TObject);
begin
// Move your labels here
end;

Enjoy




Related Articles and Replies: