task scheduler
-
Is there any way by which i can find out the name of the current running schedule task. [consider multiple schedule tasks running at a time.] For more info on scheduler task component please refer following links; http://www.codeproject.com/csharp/taskschedulerlibrary.asp http://www.codeproject.com/csharp/TSNewLib.asp
-
Is there any way by which i can find out the name of the current running schedule task. [consider multiple schedule tasks running at a time.] For more info on scheduler task component please refer following links; http://www.codeproject.com/csharp/taskschedulerlibrary.asp http://www.codeproject.com/csharp/TSNewLib.asp
-
Is there any way by which i can find out the name of the current running schedule task. [consider multiple schedule tasks running at a time.] For more info on scheduler task component please refer following links; http://www.codeproject.com/csharp/taskschedulerlibrary.asp http://www.codeproject.com/csharp/TSNewLib.asp
Use
GetTaskNames()
to get a list of all the task names. Iterate through the list, using the name to access each task. Ask each task for itsStatus
. If the status isRunning
then you have a running task. Do with this what you want. --Colin Mackay--