[DUG]Timers

Leigh Wanstead leighw at softtech.co.nz
Tue Mar 7 10:39:58 NZDT 2006


Hi Matt and Stefan,

Both of you are right. I just make a project to test that. Just rename the
attachment to timer.zip and unzip to a folder. It is a Delphi 7 project.

Now I realized that the importance of processmessages. ;-)

Regards
Leigh

-----Original Message-----
From: delphi-bounces at ns3.123.co.nz
[mailto:delphi-bounces at ns3.123.co.nz]On Behalf Of Matthew Comb
Sent: Tuesday, 7 March 2006 10:20 a.m.
To: leighw at softtech.co.nz; NZ Borland Developers Group - Delphi List
Cc: NZ Borland Developers Group - Delphi List; Delphi at ns3.123.co.nz
Subject: RE: [DUG]Timers


Delphi Timers are not threaded.

if you have two timers and put a sleep of 30 seconds in one, the time
event for the other will not fire until the first is completed. They are
run in the main application thread and are sequential.

One way you can counter this is if you have a loop in the first timer
event, you can call application.processmessages which would allow the
message to get through to the second timer.

Threaded timers are a completely different story.

Matt.




> Hi John,
>
> It won't hold up others.
>
> You must be very careful  of in modifying variables shared between the two
> timers. You can use some sorts of locking code to do that.
>
> Regards
> Leigh
> New Zealand's largest stabilizer manufacturer for camera
> http://www.SmoothArm.com
>
> -----Original Message-----
> From: delphi-bounces at ns3.123.co.nz
> [mailto:delphi-bounces at ns3.123.co.nz]On Behalf Of John Bird
> Sent: Tuesday, 7 March 2006 9:59 a.m.
> To: 'NZ Borland Developers Group - Delphi List'
> Subject: [DUG]Timers
>
>
> If I have two timers active in a program, and occasionally one of them
> takes
> a while to execute its code, does it hold up the other timer from firing
> until it is done?
>
> Or phrased another way can I think of two timers as if running in separate
> threads, or in the same thread, so that one finishes before the other can
> get a chance to run.
>
> The reason I am wondering is if there are any issues to be careful of in
> modifying variables shared between the two timers.
>
> John
>
> _______________________________________________
> Delphi mailing list
> Delphi at ns3.123.co.nz
> http://ns3.123.co.nz/mailman/listinfo/delphi
>
>
> _______________________________________________
> Delphi mailing list
> Delphi at ns3.123.co.nz
> http://ns3.123.co.nz/mailman/listinfo/delphi
>


_______________________________________________
Delphi mailing list
Delphi at ns3.123.co.nz
http://ns3.123.co.nz/mailman/listinfo/delphi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: timer.zzz
Type: application/octet-stream
Size: 3619 bytes
Desc: not available
Url : http://ns3.123.co.nz/pipermail/delphi/attachments/20060307/77dcf6dc/timer-0001.obj


More information about the Delphi mailing list