Search found 15 matches

by CarlDippel
Sun Jan 03, 2010 2:56 pm
Forum: VCL Scheduling Agent
Topic: Demo code compile error
Replies: 2
Views: 13041

:( Well I built the entire project but it still won't work. Image
by CarlDippel
Wed Dec 23, 2009 10:46 pm
Forum: VCL Scheduling Agent
Topic: Demo code compile error
Replies: 2
Views: 13041

Demo code compile error

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...
by CarlDippel
Wed May 25, 2005 11:59 am
Forum: VCL Scheduling Agent
Topic: Scheduling Agent 1.0.4 Released!
Replies: 2
Views: 13883

Error installing v1.04 for D5; fixed

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...
by CarlDippel
Mon Jun 21, 2004 12:42 pm
Forum: VCL Scheduling Agent
Topic: Task Renaming Revisited
Replies: 3
Views: 14195

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...
by CarlDippel
Sun Jun 20, 2004 10:59 am
Forum: VCL Scheduling Agent
Topic: Task Renaming Revisited
Replies: 3
Views: 14195

Task Renaming Revisited

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...
by CarlDippel
Sun Jun 20, 2004 10:46 am
Forum: VCL Scheduling Agent
Topic: StartScheduler v. Open
Replies: 1
Views: 10998

StartScheduler v. Open

TaskScheduler has two similar methods:

Code: Select all

function StartScheduler: Boolean;
and

Code: Select all

procedure Open;
Is there a difference other than the obvious, one is a function and the other is a procedure? When should I use one as opposed to the other? -Carl

Carl Dippel carl@dippel.us www.dippel.us/carl
by CarlDippel
Tue Jun 15, 2004 11:49 pm
Forum: VCL Scheduling Agent
Topic: Task Renaming
Replies: 1
Views: 11101

Task Renaming

How can I rename a tast using TTaskScheduler :?: -Carl

Carl Dippel carl@dippel.us www.dippel.us/carl
by CarlDippel
Fri Apr 16, 2004 11:39 pm
Forum: VCL Scheduling Agent
Topic: How do I programmatically disable/enable jobs
Replies: 1
Views: 11289

Modiy the task flags.

Code: Select all

Task.Flags:=Task.Flags-[tfDisabled]
or

Code: Select all

Task.Flags:=Task.Flags+[tfDisabled]
Carl Dippel carl@dippel.us www.dippel.us/carl
by CarlDippel
Wed Dec 24, 2003 8:38 am
Forum: VCL Scheduling Agent
Topic: Here is where I'm using VCL Scheduling Agent
Replies: 2
Views: 13392

Sorry. Try again. It works now.
by CarlDippel
Tue Dec 23, 2003 5:11 pm
Forum: VCL Scheduling Agent
Topic: Here is where I'm using VCL Scheduling Agent
Replies: 2
Views: 13392

Here is where I'm using VCL Scheduling Agent

I used Scheduling Agent in my shareware product :D

Fireworks A Zero Footprint X-10 Controller for the FireCracker Computer Interface

Now the URL is valid. I had the wrong syntax for the BBCode. :oops:
by CarlDippel
Sat Dec 13, 2003 10:02 pm
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21823

Sorry about the misunstandering.

Please send me the full setup package by email. to cdippel@optonline.net :D Thanks. -Carl
by CarlDippel
Sat Dec 13, 2003 2:16 pm
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21823

How is the bug fix coming?

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
by CarlDippel
Sat Nov 22, 2003 6:36 pm
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21823

This reply was emailed to me

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...
by CarlDippel
Sat Nov 22, 2003 6:29 pm
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21823

After a week I sent this email.

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...
by CarlDippel
Thu Nov 13, 2003 8:07 pm
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21823

How can I modify triggers in Delphi 5

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...