I installed SchedAgent v.2.0.3.0 without errors on my Windows Vista 64 bit machile. Then I tried to compile the demo program with Delphi 5. I got this error... [Error] Props.pas(225): Undeclared identifier: 'TaskScheduler' ...at the last line of the declaration of the PropertiesDlg function. functio...
After running setup.exe I installed SchedSuit_D5.dpk and got this error: [Fatal Error] SchedSuite_D5.dpk(54): File not found: 'saUtils.dcu' Checking the directory structure I noticed that the saUtils.pas file was not one level above the dpk file as coded... contains saUtils in '..\saUtils.pas', saRe...
This is strange how you was able to save task under current folder I'm using WinXP Pro with an NTFS HD. But in that case you can try the following code as alternative: It worked like a charm. Thanks a million! BTW I used MoveFile instead of CopyFile|DeleteTask. Do you for see any problems with that...
I'm trying to rename task a1 by saving it as A12 and deleting a1 . The A12 task is created in the current directory. How can I create it in the Scheduled Tasks directory? -Carl var Task:TTaskItem; begin TaskScheduler1.Open; Task:=TaskScheduler1.ActivateTask('a1'); Task.Activate; Task.Save('A12'); Ta...
It's been three weeks I was just wondering if there was an hope of getting this bug fix before the new year I need the functionally for which I paid. -Carl
From: Serghei Gaivan To: Carl Dippel Cc: Igor Siticov Sent: Saturday, November 22, 2003 5:00 AM Subject: Re: Scheduling Agent Hello, Sorry for the late response. The problem is caused a bug in saTask.pas. The patched sources will be available at our site soon. In order you code function properly ju...
From: Carl Dippel To: support@sicomponents.com Sent: Friday, November 21, 2003 5:49 PM Subject: Scheduling Agent I'm a registered user. I'm having difficulty creating a trigger to a new task. I want the task to run at 3:00 AM every day. My program has this code: task.Triggers.Clear; with task.Trigge...
I want to programmatically adjust the trigger of a task so it starts daily at sunset. I have a routine: Suntime, that given the latitude, longitude, and date will return the time of sunrise and sunset. :D The code below results in this: schedule = At #:## PM on MM/DD/YY next runtime = Never :( I wan...