Source code checked in, #92690
* Added custom trigger editor to TriggerEditDialog * Added project that builds a PowerShell COM task handler * Added validation for task deletion * Cleaned up code for handling PowerShell conversions...
View ArticleNew Post: How can we store trigger details in sql server db?
could anyone provide the db schema, so that Trigger information, and task information could be stored
View ArticleNew Post: How can we store trigger details in sql server db?
The entire schema for a task can be exported from either the Task.Xml property or the TaskDefinition.XmlText property. This follows the schema outlined by Microsoft at...
View ArticleNew Post: How to convert dateTimePicker format in winforms to match...
How to convert dateTimePicker format in winforms to match StartBoundary
View ArticleNew Post: How to convert dateTimePicker format in winforms to match...
Are you asking how to use the DateTimePicker control in your own application so that it can be used to edit a StartBoundary? If so, you really can't as it forces you to either supply a date or a time....
View ArticleNew Post: Get a list of tasks, descriptions and triggers into a datagrid
Hi guys, I'm pretty new to coding and am trying to write a small app which shows a list of all the scheduled tasks on the local machine, along with the description and scheduled execution date/time....
View ArticleNew Post: Hi I want to store the created task information in sql server as...
Hi I want to store the created task information in sql server as tables not as standard xml part, Any Idea How to do that
View ArticleNew Post: How can i add FullDateTimePicker into windows.
Hi Dhall, pls tell me how to add FullDateTimePicker in winforms, I added but the winform designer shows error, Also kindly tell me how to hide the "Check box " Showing "Synchronize across Time zone"
View ArticleNew Post: Hi I want to store the created task information in sql server as...
The only way I can think of is to create tables that match the properties of Task, TaskDescription, TaskSettings, TaskRegistrationInfo, TaskPrincipal, Trigger (and each derivative that might be used),...
View ArticleNew Post: How can i add FullDateTimePicker into windows.
Not sure why you would get an error when adding to your form. I have tried this in C# and VB under .NET 2.0 and 4.0 without errors. If you'll tell me the error, I may be able to help more. To remove...
View ArticleNew Post: Get a list of tasks, descriptions and triggers into a datagrid
I think you may be able to use a ListView in Details mode with less overhead and then use the following code to pull the variables you need to load into that ListView.Dim desc =...
View ArticleCommented Unassigned: System.IO.FileNotFoundException...
Can you help me, I just got this error on Windows XP Pro (SP3)System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002) at...
View ArticleCommented Unassigned: Problem to edit task with editor [11937]
Hi, i have a problem with generating the code after executionMy code :```TaskService mgr = new TaskService();TaskEditDialog dlg = new TaskEditDialog(mgr.RootFolder.Tasks[0], false, false);```Une...
View ArticleNew Post: Get a list of tasks, descriptions and triggers into a datagrid
Thanks dahall, I got it working using those exact same variables.
View ArticleNew Post: How do I unit test a class using TaskService
Is there anyway to unit test and mock core classes in this framework without using Moles like framework? Wondering if developers has any plans to introduce Interfaces for TaskService, TaskFolder, Tasks...
View ArticleNew Post: How do I unit test a class using TaskService
As the developer, I do not have any plans to introduce a set of unit tests for this project. If you do, please contact me and I will add them.
View ArticleNew Post: Quartz.Net
Hi, are there any plans to create a version based around Quartz.Net? If not, would it be possible and/or acceptable for someone to create a version based around Quartz.Net?
View ArticleNew Post: Quartz.Net
I've played some with Quartz.Net and so I am curious how you are considering bringing the two libraries together. The primary difference is that this library uses the Windows Task Scheduler engine and...
View ArticleNew Post: Quartz.Net
Hi, thanks for replying. I haven't really looked at the code in great detail but as the wrapper utilises similar artifacts (Jobs, Tasks, Schedules etc.) to Quartz, I wondered if it would be possible to...
View ArticleNew Post: getting security information for a task
I am trying to list all the tasks and the associated account that is running the task. I got the list of tasks just fine. I am trying to obtain the userid of the context the task runs under is eluding...
View Article