views:

33

answers:

1

How can I trigger a time event on a Windows Mobile 6 app to check my database every five minutes? I'm looking for something like that done in the System.Timers namespace.

A: 

There is the System.Threading.Timer, or the Windows.Forms.Timer. If neither of those work, the SDF has a LargeIntervalTimer as well as a precision Timer2.

ctacke