My C# application will run in both windows 7 and windows CE 6.0,
I need to do some operation while change the time so i used below event in windows 7,
SystemEvents.TimeChanged += new EventHandler(SystemEvents_TimeChanged);
its perfectly working in windows 7
but this is not working in the windows CE, SystemEvents
namespace not in the CE.
any one tell how to use this event in windows CE.
Thanks,