View previous topic :: View next topic |
Author |
Message |
rhett.price
Joined: 17 Jan 2014 Posts: 2
|
Posted: Wed Mar 12, 2014 3:02 pm Post subject: Cyclical alarm with no expiration under Non-Vista machines |
|
|
I really need a way to set a "Cyclical" type alarms for Non-Vista to never expire. I can do this with Vista version by never setting Duration. But with Non-Vista machines - some type of Duration seems to be required - otherwise I get an error. Hence my code below. However this only sets it to run for a year.
If not Scheduler.RunningVistaOrLater then
FTask.Triggers[0].Duration := 365 * 24 * 60; // run for 1 year
Any way to fix this?
- Rhett |
|
Back to top |
|
 |
isiticov Site Admin
Joined: 21 Nov 2002 Posts: 2129
|
Posted: Sat Mar 15, 2014 4:19 am Post subject: |
|
|
Just set
Code: | HasEndDate := False;
KillAtDurationEnd := False; |
for TTrigger. |
|
Back to top |
|
 |
|