Hi,
I am trying to write a Service application that will have a list of events like that :
2007-08-08 11:00:03 Event 01
2007-08-08 11:00:15 Event 02
2007-08-08 11:00:35 Event 03
2007-08-08 11:00:48 Event 04
... (can have up to a 1000 entries)
I want to raise a MessageBox on the exact second the event should be lauched.
I am hesitating using a System.Timers.Timer with a 1000 interval since I'm afraid it may loose a beat sometime. And at every second verifying a more than a thousand date seems to be not so effective.
Is there another solution?
Thanks
Dan
I am trying to write a Service application that will have a list of events like that :
2007-08-08 11:00:03 Event 01
2007-08-08 11:00:15 Event 02
2007-08-08 11:00:35 Event 03
2007-08-08 11:00:48 Event 04
... (can have up to a 1000 entries)
I want to raise a MessageBox on the exact second the event should be lauched.
I am hesitating using a System.Timers.Timer with a 1000 interval since I'm afraid it may loose a beat sometime. And at every second verifying a more than a thousand date seems to be not so effective.
Is there another solution?
Thanks
Dan