Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / C#

Task Scheduler

Rate me:
Please Sign up or sign in to vote.
4.86/5 (84 votes)
18 Apr 2015CPOL2 min read 289.8K   25.5K   304   73
A simple structured native task scheduler

Image 1

Introduction

Task Scheduler is a class that schedules and automatically fires events at a time you specify. All important triggers are available: OnlyOneTime, Daily, Weekly and Monthly.  

So why another Task Scheduler?

We need for one of our projects a scheduler that

  1. Can check a date or show all dates on which a trigger will fire.  (See the demo - button "Show List")
  2. We need to schedule tasks not only daily, weekly,... we need a combination of them. e.g. every Wednesday (weekly trigger) plus every last day in a month (monthly trigger)

Update 1: Version 1.1

  • Added date formatting during serialization/deserialization
  • Fixed issue in TriggerItem.FromXML()

Update 2: Version 1.2

  • Now using System.Timers.Timer instead of System.Windows.Forms.Timer
  • Minor changes in XML serialization
  • Demo now includes a Windows-Service with full service control (start/stop/install/uninstall)
  • TriggerItemCollection support now serialization / deserialization
  • Bug fixes

Features

  • Simple structure and easy to use
  • Possible triggers: OneTimeOnly, Daily, Weekly and Monthly
  • Monthly trigger: DayOfMonth and Weekday
  • Collection of TriggerItems
  • Next Trigger-Date/Time information
  • Check if a TriggerItem will fire on a certain date CheckDate(DateTime date)
  • Combine different triggers in one item. (e.g. every Friday plus every last day in a month)
    If there is an overlap the Trigger will fire only one time
  • Save and restore TriggerItems to and from XML

Settings

Field Description
StartDate Specifies the first date on which the trigger will fire
EndDate Specifies the last date on which the trigger will fire
TriggerTime Specifies the time on which the trigger will fire
Enabled Enable / disable the trigger
TriggerSettings Set the appropriate trigger-dates as described below

TriggerItem.TriggerSettings Overview:
Another_TaskScheduler/TriggerSettings.jpg

To activate a specific date just set the appropriate flag(s):

// Activate Sunday on weekly trigger.
triggerItem.TriggerSettings.Weekly.DaysOfWeek[(int)DayOfWeek.Sunday] = true;

// Activate last Friday in January and February
triggerItem.TriggerSettings.Monthly.Month[(int)TaskScheduler.MonthOfTheYeay.January] = 
    true; 
triggerItem.TriggerSettings.Monthly.Month[(int)TaskScheduler.MonthOfTheYeay.February] = 
    true; 
triggerItem.TriggerSettings.Monthly.DaysOfMonth[(int)TaskScheduler.DayOccurrence.Last] =
    true; 
triggerItem.TriggerSettings.Monthly.WeekDay[(int)DayOfWeek.Sunday] = true;

Using TaskScheduler and TriggerItems

  1. Create a new instance of TaskScheduler.
    // Create the TaskScheduler
    TaskScheduler _taskScheduler = new TaskScheduler();
    
    // Set the synchronizing object to get trigger events within the main thread.
    // Important if you're using Windows Forms
    _taskScheduler.SynchronizingObject = this;
  2. Create a new Trigger-Item. Set start and end date + trigger time and if you like a tag.
    TaskScheduler.TriggerItem triggerItem = new TaskScheduler.TriggerItem();
    triggerItem.Tag = textBoxlabelOneTimeOnlyTag.Text;
    triggerItem.StartDate = dateTimePickerStartDate.Value;
    triggerItem.EndDate = dateTimePickerEndDate.Value;
    triggerItem.TriggerTime = dateTimePickerTriggerTime.Value;
    // And the trigger-Event :)
    triggerItem.OnTrigger += new TaskScheduler.TriggerItem.OnTriggerEventHandler(
        triggerItem_OnTrigger);

    Settings for "OneTimeOnly"

    TriggerItem.TriggerSettings.OneTimeOnly.Active = checkBoxOneTimeOnlyActive.Checked;
    triggerItem.TriggerSettings.OneTimeOnly.Date = 
        dateTimePickerOneTimeOnlyDay.Value.Date;

    Settings for "Daily"

    triggerItem.TriggerSettings.Daily.Interval = (ushort)numericUpDownDaily.Value;

    Settings for "Weekly"

    for (byte day = 0; day < 7; day++) // Set the active Days
    triggerItem.TriggerSettings.Weekly.DaysOfWeek[day] = 
        checkedListBoxWeeklyDays.GetItemChecked(day);

    Settings for "Monthly"

    for (byte month = 0; month < 12; month++) // Set the active Months
        triggerItem.TriggerSettings.Monthly.Month[month] = 
        checkedListBoxMonthlyMonths.GetItemChecked(month);
    
    // Set the active Days (0..30 = Days, 31=last Day) for monthly trigger
    for (byte day = 0; day < 32; day++)
        triggerItem.TriggerSettings.Monthly.DaysOfMonth[day] = 
        checkedListBoxMonthlyDays.GetItemChecked(day);
    
    // Set the active weekNumber and DayOfWeek
    // e.g the first monday, or the last friday...
    // 0..4: first, second, third, fourth or last week
    
    for (byte weekNumber = 0; weekNumber < 5; weekNumber++)     
        triggerItem.TriggerSettings.Monthly.WeekDay.WeekNumber[weekNumber] = 
        checkedListBoxMonthlyWeekNumber.GetItemChecked(weekNumber);
    for (byte day = 0; day < 7; day++)
        triggerItem.TriggerSettings.Monthly.WeekDay.DayOfWeek[day] = 
        checkedListBoxMonthlyWeekDay.GetItemChecked(day);
  3. Add the trigger to the Collection and enable the Scheduler
    triggerItem.Enabled = true; // Set the Item-Active - State
    _taskScheduler.AddTrigger(item); // Add the trigger to List
    _taskScheduler.Enabled = true; // Start the Scheduler

Disclaimer

THE SOFTWARE AND THE ACCOMPANYING FILES ARE DISTRIBUTED "AS IS" AND WITHOUT ANY WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO REPONSIBILITIES FOR POSSIBLE DAMAGES OR EVEN FUNCTIONALITY CAN BE TAKEN. THE USER MUST ASSUME THE ENTIRE RISK OF USING THIS SOFTWARE.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
p++ Datentechnik GmbH
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionNot Triggering the Event :S Pin
UngarMax014-Dec-13 11:07
UngarMax014-Dec-13 11:07 
Questionhow to integrate window services with this application.!! Pin
Varun_nayak22-Nov-13 22:18
Varun_nayak22-Nov-13 22:18 
AnswerRe: how to integrate window services with this application.!! Pin
Lothar Perr19-Apr-15 8:33
Lothar Perr19-Apr-15 8:33 
GeneralRe: how to integrate window services with this application.!! Pin
Varun_nayak29-Mar-16 18:41
Varun_nayak29-Mar-16 18:41 
Questionhelp me!How to create a task in Windows Xp,using Microsoft.Win32.TaskScheduler.dll. Pin
Member 1041057420-Nov-13 20:52
professionalMember 1041057420-Nov-13 20:52 
BugWon't run as Windows Service Pin
rix_27-Sep-13 6:21
rix_27-Sep-13 6:21 
GeneralRe: Won't run as Windows Service Pin
Varun_nayak22-Nov-13 22:37
Varun_nayak22-Nov-13 22:37 
GeneralMy vote of 5 Pin
myeric12-Aug-13 21:33
myeric12-Aug-13 21:33 
Nice job, the logic is in one class this is very useful!
Thanks
Questionif on time run task system off after system do on are run task ??? Pin
ali21232111224-Jul-13 0:43
ali21232111224-Jul-13 0:43 
AnswerRe: if on time run task system off after system do on are run task ??? Pin
Lothar Perr24-Jul-13 1:06
Lothar Perr24-Jul-13 1:06 
GeneralRe: if on time run task system off after system do on are run task ??? Pin
Wombaticus19-Apr-15 4:25
Wombaticus19-Apr-15 4:25 
GeneralRe: if on time run task system off after system do on are run task ??? Pin
Lothar Perr19-Apr-15 8:20
Lothar Perr19-Apr-15 8:20 
QuestionHow to schedule trigger even if application terminated like window task schedule Pin
Varun_nayak19-Jul-13 22:31
Varun_nayak19-Jul-13 22:31 
AnswerRe: How to schedule trigger even if application terminated like window task schedule Pin
Lothar Perr24-Jul-13 1:03
Lothar Perr24-Jul-13 1:03 
GeneralRe: How to schedule trigger even if application terminated like window task schedule Pin
Varun_nayak22-Nov-13 22:22
Varun_nayak22-Nov-13 22:22 
QuestionTriggerOneTimeOnly bug?? Pin
thomas3.1423-Apr-13 12:50
thomas3.1423-Apr-13 12:50 
QuestionHelp Pin
Bill Rady23-Apr-13 7:36
Bill Rady23-Apr-13 7:36 
GeneralMy vote of 4 Pin
Prasad Khandekar17-Apr-13 9:23
professionalPrasad Khandekar17-Apr-13 9:23 
QuestionUse the static method TaskScheduler.TriggerItem.FromXML??? Pin
Member 949456625-Mar-13 11:44
Member 949456625-Mar-13 11:44 
GeneralThanks For This Perfect Article Pin
sagar savsani5-Jan-13 20:34
sagar savsani5-Jan-13 20:34 
QuestionFromXML Pin
wwwwe13-Nov-12 6:58
wwwwe13-Nov-12 6:58 
AnswerRe: FromXML Pin
Lothar Perr13-Nov-12 19:46
Lothar Perr13-Nov-12 19:46 
GeneralRe: FromXML Pin
wwwwe14-Nov-12 3:40
wwwwe14-Nov-12 3:40 
GeneralRe: FromXML Pin
Lothar Perr6-Dec-12 9:04
Lothar Perr6-Dec-12 9:04 
Questiontriggering exe Pin
markykoyski12-Nov-12 17:46
markykoyski12-Nov-12 17:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.