 |
|
 |
Hey Man, this code is really good, simple and useful, that's it
|
|
|
|
 |
|
 |
tnx
|
|
|
|
 |
|
 |
Yes, great job. Keep it simple thanks
|
|
|
|
 |
|
 |
The timer_tick event does not work when i call CreateSchedulerItem function from thread function .
for ex:
myThreadfn()
{
.....
....
createscheduleritem()..
...
}
in this case the timer_tick event doesn't work even trigger timer start?.
plz tell me any body asap..
|
|
|
|
 |
|
 |
You need a synchronized call inside the timer - event-handler...
for example:
textBoxEvents.Invoke(new MethodInvoker(delegate
{
textBoxEvents.AppendText(e.TriggerDate.ToString() + ": " + e.Item.Tag + ", next trigger: " + e.Item.GetNextTriggerTime().DayOfWeek.ToString() + ", " + e.Item.GetNextTriggerTime().ToString() + "\r\n");
UpdateTaskList();
}
));
|
|
|
|
 |
|
 |
It's a really gud article..My vote of 4
|
|
|
|
 |
|
 |
nice work mate...bookmarked 'n' have a 5, well done
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKQUFK[M`UKs*$GwU#QDXBER@CBN%
R0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
-----------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
 |
|
 |
Thank You!
|
|
|
|
 |
|
 |
I agree good work, well done.
cheers,
Donsw
My Recent Article : Backup of Data files - Full and Incremental
|
|
|
|
 |
|
 |
Thank you!
|
|
|
|
 |
|
 |
Sorry missing some description on the class itself. How to calculate event, etc.
I have build one for a differnet project and can imagine the effort on the class.
My hint: I would use the System.Timers.Timer instead of the Forms.Timer. Less side effects, more precisely. The Forms.Timer took me days for debugging
|
|
|
|
 |
|
 |
You are right, a System.Timers.Timer is better in most cases...
I used the Forms.Timer because you don't need to invoke within the Event-Handler...
Replace the Timer and use following Event-Handler:
void triggerItem_OnTrigger(object sender, TaskScheduler.OnTriggerEventArgs e)
{
textBoxEvents.Invoke(new MethodInvoker(delegate
{
textBoxEvents.AppendText(e.TriggerDate.ToString() + ": " + e.Item.Tag + ", next trigger: " + e.Item.GetNextTriggerTime().DayOfWeek.ToString() + ", " + e.Item.GetNextTriggerTime().ToString() + "\r\n");
UpdateTaskList();
}));
}
|
|
|
|
 |
|
 |
In http://www.codeproject.com/KB/miscctrl/ISCMS__.aspx project job schedule in "Work in Progress" between range '7/1/2009' to '8/1/2009' job schedule is displayed in the form of graphical bars. You can do so, to enhance your presentation.
modified on Tuesday, August 4, 2009 8:42 PM
|
|
|
|
 |
|
 |
Thank you, not a bad Idea!
Let's see if I find time for it
|
|
|
|
 |
|
 |
the user need 2 clicks to check a choise in the check-lists
first click will select item and the second click check the choise
|
|
|
|
 |
|
 |
If you give a two for such small issue, you are really screwed up.
|
|
|
|
 |
|
 |
@Country Man
1) That is the DEMO, not the class itself!
2) Please forward your Post to Microsoft. This control is a System.Windows.Forms.CheckedListBox and the behavior depends on it.
@Sacha Barber
tnx
|
|
|
|
 |
|
 |
Great project. A decent scheduler is tough to pull off.
Plus, I wanted to counter that guy who gave a "2" for the goofy traits of a Microsoft control.
|
|
|
|
 |
|
 |
*bleep* off
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKQUFK[M`UKs*$GwU#QDXBER@CBN%
R0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
-----------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
 |
|
 |
its good, have a 5
Sacha Barber
- Microsoft Visual C# MVP 2008/2009
- Codeproject MVP 2008/2009
Your best friend is you.
I'm my best friend too. We share the same views, and hardly ever argue
My Blog : sachabarber.net
|
|
|
|
 |
|
 |
tnx
|
|
|
|
 |
|
 |
nice & clear
|
|
|
|
 |
|
 |
Thank You!
|
|
|
|
 |