Hi Everyone i trying to create a task scheduler programmatically. I am stack on creating a weekly trigger. I am trying to allow the user to select days from monday to sunday. The problem i am having is that i can only create a trigger with one of the 7 days. How can i assign all 7 days to the weekly trigger?
Below is my code that works for one day out of seven:
Below is my code that works for one day out of seven:
Code:
Dim Weekly As TaskScheduler.IWeeklyTrigger
Weekly = task.Triggers.Create(_TASK_TRIGGER_TYPE2.TASK_TRIGGER_WEEKLY)
Weekly.Id = "Weekly IAccpacTrigger"
Weekly.StartBoundary = String.Format("{0:yyyy-MM-dd}", dtDate.Value) & "T" & Format(dtTime.Value, "HH:mm:ss")
Weekly.DaysOfWeek = 1
Weekly.Enabled = True