Hi,
I would like to call a function automatically lets say every 2 secs.
Is this possible with .NET, and if so can you please paste some code? This will be used in Windows Mobile 6 SDK
thanks
Hi,
I would like to call a function automatically lets say every 2 secs.
Is this possible with .NET, and if so can you please paste some code? This will be used in Windows Mobile 6 SDK
thanks
Use the System.Threading.Timer
:
http://msdn.microsoft.com/library/system.threading.timer.aspx
Have a look at the Timer Class:
Provides a mechanism for executing a method at specified intervals.
Platforms: [...], .NET Compact Framework
You can find an example in the linked MSDN documentation.