M mp Mar 26, 2004 #1 Hi, I would like to notice (catch message) when stsyem date is changed. How we can do that? Thanks
? =?ISO-8859-2?Q?Marcin_Grz=EAbski?= Mar 26, 2004 #2 Hi, I would like to notice (catch message) when stsyem date is changed. How we can do that? Thanks Click to expand... Do You mean a change of time/date made by user? Regards Marcin
Hi, I would like to notice (catch message) when stsyem date is changed. How we can do that? Thanks Click to expand... Do You mean a change of time/date made by user? Regards Marcin
M Mattias Sjögren Mar 26, 2004 #3 I would like to notice (catch message) when stsyem date is changed. How we can do that? Click to expand... Handle the TimeChanged event of the Microsoft.Win32.SystemEvents class. Mattias
I would like to notice (catch message) when stsyem date is changed. How we can do that? Click to expand... Handle the TimeChanged event of the Microsoft.Win32.SystemEvents class. Mattias
M mp Mar 28, 2004 #4 How I can do that. Is there some example? Mattias Sjögren said: Handle the TimeChanged event of the Microsoft.Win32.SystemEvents class. Mattias Click to expand...
How I can do that. Is there some example? Mattias Sjögren said: Handle the TimeChanged event of the Microsoft.Win32.SystemEvents class. Mattias Click to expand...
M Mattias Sjögren Mar 28, 2004 #5 How I can do that. Is there some example? Click to expand... void OnTimeChanged(object sender, EventArgs e) { // ... } // Event hookup code, put in your constructor or some other place where it makes sense SystemEvents.TimeChanged += new EventHandler(OnTimeChanged); Mattias
How I can do that. Is there some example? Click to expand... void OnTimeChanged(object sender, EventArgs e) { // ... } // Event hookup code, put in your constructor or some other place where it makes sense SystemEvents.TimeChanged += new EventHandler(OnTimeChanged); Mattias