Scheduling a .NET component

  • Thread starter Thread starter arcvonz
  • Start date Start date
A

arcvonz

I have a.NET component that needs to be scheduled to run programmatically.
How can it be done, any interface to Task Scheduler from .NET?

Thanks,
Arc
 
Wouldnt you need to use the task scheduler to run the component
instead of the other way around? Or are you asking if you can can
create a .NET app that would set the values in the task scheduler to
run a THIRD app?
 
You cant schedule just .NET component. It has to be an EXE. If all you have
is a component, wrap it up with a Main to make an exe and schedule it just
like any other exe based application. If you are looking for .NET wrapper
for Scheduler API, check out www.codeproject.com. I remember seeing a
wrapper for the same there.
 
Yes I am looking at it from creating a .NET app that would set the values in
the task scheduler to run a THIRD app?
 
Back
Top