New Post: Trigger changes on AZURE
From what I know, Azure is a set of cloud services so I'm not sure where TaskScheduler would even be running unless in a VM hosting some version of Windows. Will you provide a lot more detail?
View ArticleNew Post: Languages supported for creating tasks?
Hi! I need to implement scheduled tasks in my application and your library turned to be great. The problem is that I will need to distribute it to clients with different Windows localization settings....
View ArticleNew Post: Languages supported for creating tasks?
The translations apply to the UI elements provided for editing tasks with the library or displaying information about tasks. For creating tasks, the library will work with any language. There is the...
View ArticleNew Post: Cannot uncheck the last day
The MonthlyTrigger requires that at least one day is specified. If you uncheck, but do not select another day, the UI will default to the last valid selection. If this is not the behavior you are...
View ArticleNew Post: Cannot uncheck the last day
In fact, it is another day is checked as well, so I can sure that it isn't the behavior you are seeing. And if none of other days is checked, it is impossible to uncheck the "last". The issue is: It is...
View ArticleNew Post: Cannot uncheck the last day
Thank for the detail as it helped me find a bug in the logic that caused the problem you described. It will be fixed in the upcoming 2.5.20 release.
View ArticleSource code checked in, #98070
* Fixed bug in editor for MonthlyTrigger that didn't clear the RunOnLastDayOfMonth flag when unchecked (thanks huangjiadog) * Fixed bug in trigger text rendering where "last" text was omitted. *...
View ArticleNew Post: The problem about multiSelectTrigger
In the task edit trigger, it is able to multiSelect the trigger, but if I select two trigger and click delete, the UI will throw an exception. So is it possible to set triggerListView.MultiSelect to...
View ArticleNew Post: The problem of DailyTrigger
In the TriggerEditorDialog, when I chose Daily trigger, it is able to input 200 in the "Recur every;" control. But if I click OK, all number larger than 100 will just become 100. If I try to input 0 or...
View ArticleNew Post: The problem of WeeklyTrigger
In the TriggerEidtDialog, When I chose Weekly trigger and in put 100 in "Recur every:" control, and then click OK, it seem to everything is OK. But if I want to save the task, it is a exception show:...
View ArticleNew Post: The problem of MonthlyDOWTrigger
When I try to create a MonthlyDOWTrigger, I find that I can just leave the "weeks" control empty, when I click OK and everything looks good, and but if I try to save the task, it is an exception show:...
View ArticleNew Post: The problem about expire time.
If I set the expire time of a trigger to 31 Dec. 9998 23:59:59, and then click OK to save it. But if I try to edit this trigger once again, it is a exception showed and cannot edit it. It seem to all...
View ArticleNew Post: The problem of DailyTrigger
I had set the min value to 0 instead of 1 and the max to 100 instead of short.MaxValue. That will fix the exception. As far as the UpDownNumericControl telling me it is changing the value to the min or...
View ArticleNew Post: The problem of MonthlyDOWTrigger
I ready the source code and I think it just forget to assign true to monthlyOnWeekDropDown.RequireAtLeastOneCheckedItem in Microsoft.Win32.TaskScheduler.UIComponents.MonthlyTriggerUI. Hope it will be...
View ArticleNew Post: Languages supported for creating tasks?
Perfect, thanks a lot for all the work in the library, it's a great help.
View ArticleNew Post: Activate / Deactivate Task
Hello! How can I deactivate a Task? I can not find the property to do that. Thank you for your help and for your work!
View ArticleNew Post: Activate / Deactivate Task
I don't totally understand what "deactivate " mean. But Microsoft.Win32.TaskScheduler.Task has a property "Enable", and you can assign false to disable the task. Is this helpful to solve you problem?
View ArticleNew Post: The problem about expire time.
I found the statement as blow(http://referencesource.microsoft.com/#System.Windows.Forms/winforms/Managed/System/WinForms/DateTimePicker.cs,85): [Browsable(false),...
View Article