How to set a timer in an application so that a function will be called every 5 or 10 min?

  • Thread starter Thread starter ywchan
  • Start date Start date
Y

ywchan

I am writing an application which automatically perform some function for
every 5 or 10 min....I would like to ask how to automate it? Thanks!
 
ywchan said:
I am writing an application which automatically perform some function for
every 5 or 10 min....I would like to ask how to automate it? Thanks!

Take a look at the various timer classes of the .NET Framework. In a
Windows Forms application, you can use a 'System.Windows.Forms.Timer'
component (available in the toolbox).
 
Back
Top