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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top