Time change events
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Is there anyway to have a program notified of time change events in Windows? For example if I wanted to be notifed when the hour changed...is this possible? Thanks - Aaron
-
Is there anyway to have a program notified of time change events in Windows? For example if I wanted to be notifed when the hour changed...is this possible? Thanks - Aaron
There's a timer control. You give it a number of milliseconds, and when that time interval has passed it throws an event that you can receive. To receive a message every hour just set the interval to 3600000 milliseconds.