Is there anything that allows me to receive an event if the user changes their windows time zone? Thanks,
Printable View
Is there anything that allows me to receive an event if the user changes their windows time zone? Thanks,
I would look at WMI, but it's just a hint, I've no direct experience with it.
i am not sure...but if windows release a message with hex code after chaning the time zone then you can override WndProc and catch that message:
pesudo code:
Code:protected override void WndProc(ref Message mess)
private const int Time_Zone_Changed = 0x(some hex);
if (mess.Msg == Time_Zone_Changed )
//do something
Thanks everyone