Group,
Are there any task schedulers or activeX controls that can run inside an exe
to schedule another exe to run without user action?
Wade

Re: scheduling by Josh

Josh
Sun Sep 16 15:00:53 PDT 2007

you mean like windows scheduled-tasks?
what do you mean "run inside" ?

If you think about launching some "task" (not an exe) w/in your program, use a
timer for it & launch it....

On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis" <wdavis3@cinci.rr.comNOSPAM>
wrote:

>Group,
>Are there any task schedulers or activeX controls that can run inside an exe
>to schedule another exe to run without user action?
>Wade
>


Re: scheduling by W

W
Sun Sep 16 19:41:54 PDT 2007

No... I want to install a maintenance app to run at a scheduled time each
night. I would like to automatically access the task scheduler and create
this task in code, so the user doesn't need to use the task scheduler.

"Josh Assing" <XjoshX@jAssing.com> wrote in message
news:2n9re3liimf75mo8q67liepnle5k5q6v5k@4ax.com...
> you mean like windows scheduled-tasks?
> what do you mean "run inside" ?
>
> If you think about launching some "task" (not an exe) w/in your program,
> use a
> timer for it & launch it....
>
> On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis" <wdavis3@cinci.rr.comNOSPAM>
> wrote:
>
>>Group,
>>Are there any task schedulers or activeX controls that can run inside an
>>exe
>>to schedule another exe to run without user action?
>>Wade
>>
>



Re: scheduling by Allan

Allan
Sun Sep 16 23:08:00 PDT 2007

you can use the timer control and design your exe to run at the system
tray... you may also add an entry in the registry so that the exe will launch
when the PC is re-started...

hope this will help...

allan

"W.Davis" wrote:

> No... I want to install a maintenance app to run at a scheduled time each
> night. I would like to automatically access the task scheduler and create
> this task in code, so the user doesn't need to use the task scheduler.
>
> "Josh Assing" <XjoshX@jAssing.com> wrote in message
> news:2n9re3liimf75mo8q67liepnle5k5q6v5k@4ax.com...
> > you mean like windows scheduled-tasks?
> > what do you mean "run inside" ?
> >
> > If you think about launching some "task" (not an exe) w/in your program,
> > use a
> > timer for it & launch it....
> >
> > On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis" <wdavis3@cinci.rr.comNOSPAM>
> > wrote:
> >
> >>Group,
> >>Are there any task schedulers or activeX controls that can run inside an
> >>exe
> >>to schedule another exe to run without user action?
> >>Wade
> >>
> >
>
>
>

Re: scheduling by Dan

Dan
Mon Sep 17 08:52:19 PDT 2007

Yes, you can do this.

If you Google for it, you should come up with plenty of examples like this
one:

http://www.foxite.com/archives/task-scheduler-dll-wrapper-class-0000061039.htm

Dan

W.Davis wrote:
> No... I want to install a maintenance app to run at a scheduled time
> each night. I would like to automatically access the task scheduler
> and create this task in code, so the user doesn't need to use the
> task scheduler.
> "Josh Assing" <XjoshX@jAssing.com> wrote in message
> news:2n9re3liimf75mo8q67liepnle5k5q6v5k@4ax.com...
>> you mean like windows scheduled-tasks?
>> what do you mean "run inside" ?
>>
>> If you think about launching some "task" (not an exe) w/in your
>> program, use a
>> timer for it & launch it....
>>
>> On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis"
>> <wdavis3@cinci.rr.comNOSPAM> wrote:
>>
>>> Group,
>>> Are there any task schedulers or activeX controls that can run
>>> inside an exe
>>> to schedule another exe to run without user action?
>>> Wade



Re: scheduling by W

W
Mon Sep 17 11:02:34 PDT 2007

Found many.... unfortunately, the taskscheduler.dll referred to in several
places, is not available except to a very few fortunate individuals.

"Dan Freeman" <spam@microsoft.com> wrote in message
news:OlTS6KU#HHA.1188@TK2MSFTNGP04.phx.gbl...
> Yes, you can do this.
>
> If you Google for it, you should come up with plenty of examples like this
> one:
>
>
http://www.foxite.com/archives/task-scheduler-dll-wrapper-class-0000061039.h
tm
>
> Dan
>
> W.Davis wrote:
> > No... I want to install a maintenance app to run at a scheduled time
> > each night. I would like to automatically access the task scheduler
> > and create this task in code, so the user doesn't need to use the
> > task scheduler.
> > "Josh Assing" <XjoshX@jAssing.com> wrote in message
> > news:2n9re3liimf75mo8q67liepnle5k5q6v5k@4ax.com...
> >> you mean like windows scheduled-tasks?
> >> what do you mean "run inside" ?
> >>
> >> If you think about launching some "task" (not an exe) w/in your
> >> program, use a
> >> timer for it & launch it....
> >>
> >> On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis"
> >> <wdavis3@cinci.rr.comNOSPAM> wrote:
> >>
> >>> Group,
> >>> Are there any task schedulers or activeX controls that can run
> >>> inside an exe
> >>> to schedule another exe to run without user action?
> >>> Wade
>
>



Re: scheduling by Cy

Cy
Mon Sep 17 22:35:43 PDT 2007

Try on doug hennig's site www.stonefield.com as he has some VFP classes on
there in his technical papers that let you do scheduling through VFP. I
found these while looking for taskscheduler.dll which doesn't work with
Vista from what I have read anyways, and Doug Hennig's does work with Vista.

--
Cy Welch
Senior Programmer/Analyst
MetSYS Inc.
http://www.metsysinc.com

"W. Davis" <foxteeth@zoomtown.com> wrote in message
news:uXCNMTV#HHA.4712@TK2MSFTNGP04.phx.gbl...
> Found many.... unfortunately, the taskscheduler.dll referred to in several
> places, is not available except to a very few fortunate individuals.
>
> "Dan Freeman" <spam@microsoft.com> wrote in message
> news:OlTS6KU#HHA.1188@TK2MSFTNGP04.phx.gbl...
>> Yes, you can do this.
>>
>> If you Google for it, you should come up with plenty of examples like
>> this
>> one:
>>
>>
> http://www.foxite.com/archives/task-scheduler-dll-wrapper-class-0000061039.h
> tm
>>
>> Dan
>>
>> W.Davis wrote:
>> > No... I want to install a maintenance app to run at a scheduled time
>> > each night. I would like to automatically access the task scheduler
>> > and create this task in code, so the user doesn't need to use the
>> > task scheduler.
>> > "Josh Assing" <XjoshX@jAssing.com> wrote in message
>> > news:2n9re3liimf75mo8q67liepnle5k5q6v5k@4ax.com...
>> >> you mean like windows scheduled-tasks?
>> >> what do you mean "run inside" ?
>> >>
>> >> If you think about launching some "task" (not an exe) w/in your
>> >> program, use a
>> >> timer for it & launch it....
>> >>
>> >> On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis"
>> >> <wdavis3@cinci.rr.comNOSPAM> wrote:
>> >>
>> >>> Group,
>> >>> Are there any task schedulers or activeX controls that can run
>> >>> inside an exe
>> >>> to schedule another exe to run without user action?
>> >>> Wade
>>
>>
>
>

Re: scheduling by Josh

Josh
Tue Sep 18 09:05:15 PDT 2007

On Sun, 16 Sep 2007 22:41:54 -0400, "W.Davis" <wdavis3@cinci.rr.comNOSPAM>
wrote:

>No... I want to install a maintenance app to run at a scheduled time each
>night. I would like to automatically access the task scheduler and create
>this task in code, so the user doesn't need to use the task scheduler.

you can drop stuff into the task scheduler folder I suppose; but you'd need
passwords...

>
>"Josh Assing" <XjoshX@jAssing.com > wrote in message
>news:2n9re3liimf75mo8q67liepnle5k5q6v5k@4ax.com...
>> you mean like windows scheduled-tasks?
>> what do you mean "run inside" ?
>>
>> If you think about launching some "task" (not an exe) w/in your program,
>> use a
>> timer for it & launch it....
>>
>> On Sun, 16 Sep 2007 17:03:30 -0400, "W.Davis" <wdavis3@cinci.rr.comNOSPAM>
>> wrote:
>>
>>>Group,
>>>Are there any task schedulers or activeX controls that can run inside an
>>>exe
>>>to schedule another exe to run without user action?
>>>Wade
>>>
>>
>