How can i generate an event at a specific time? For example, say I want to generate an alert at 8:00 AM that informs me its 8:00 AM (or an event that informs me of the current time at any given time).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the System.Threading.Timer class:
The See this SO question how to calculate the next 8:00 AM occurrence. |
|||||||||
|
|
Elaborating on dtb's answer this is how I implemented it.
|
||||
|
|
|
Use a Scheduled Task (Windows XP) to generate the alert. There are a couple of main benefits to using this approach:
|
||||
|
|
We can use this function for getting timer running for times or change it to run on a specific time :D |
|||||||
|
