Scheduling a .NET component

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • arcvonz

    #1

    Scheduling a .NET component

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

    Thanks,
    Arc


  • Dan Brussee

    #2
    Re: Scheduling a .NET component

    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?

    On Tue, 17 Aug 2004 18:13:59 -0400, "arcvonz" <dprivon@hotmai l.com>
    wrote:
    [color=blue]
    >I have a.NET component that needs to be scheduled to run programmaticall y.
    >How can it be done, any interface to Task Scheduler from .NET?
    >
    >Thanks,
    >Arc
    >[/color]

    Comment

    • Kris

      #3
      Re: Scheduling a .NET component

      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.


      "arcvonz" <dprivon@hotmai l.com> wrote in message
      news:e7Xg%23dKh EHA.3428@TK2MSF TNGP11.phx.gbl. ..[color=blue]
      > I have a.NET component that needs to be scheduled to run programmaticall y.
      > How can it be done, any interface to Task Scheduler from .NET?
      >
      > Thanks,
      > Arc
      >
      >[/color]


      Comment

      • arcvonz

        #4
        Re: Scheduling a .NET component

        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?


        "Dan Brussee" <dbrussee@nc.rr .com> wrote in message
        news:3q15i01td8 oteu63n1kp8uc4c od39kjv3b@4ax.c om...[color=blue]
        > 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?
        >
        > On Tue, 17 Aug 2004 18:13:59 -0400, "arcvonz" <dprivon@hotmai l.com>
        > wrote:
        >[color=green]
        > >I have a.NET component that needs to be scheduled to run[/color][/color]
        programmaticall y.[color=blue][color=green]
        > >How can it be done, any interface to Task Scheduler from .NET?
        > >
        > >Thanks,
        > >Arc
        > >[/color]
        >[/color]


        Comment

        Working...