Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if there's some sort of system event that gets fired every time a user changes the time in Windows. I know there's a way to enable this in Windows' EventLog, but I was looking for a way to respond to this event programatically (like using the Windows API).

share|improve this question

2 Answers

up vote 4 down vote accepted

I'm not sure from your question if you're working in managed or native code. But if you're working in managed code you can use the TimeChanged event on the SystemEvents class.

Microsoft.Win32.SystemEvents.TimeChanged

share|improve this answer
My apologies for not being completely clear. But yes, I will be running this on a managed environment so your answer is what I was looking for. – enriquein Apr 16 '09 at 15:01
+1 back, it's only fair! – stuartd Apr 16 '09 at 15:27

A WM_TIMECHANGE message is sent whenever there is a change in the system time

share|improve this answer
+1, correct answer to one of the possible intents of an ambiguous question – JaredPar Apr 16 '09 at 15:03
Agreed, I'm sorry for the ambiguity. – enriquein Apr 16 '09 at 15:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.