Something like crone?

  • Thread starter Thread starter Krzysztof
  • Start date Start date
K

Krzysztof

Is in C#/VS or other libraries something like crone vide Java?

Or how can I made it? (Doing some jobs in app on special time, or from time
to time)

Regards
Krzysztof
 
Krzysztof,
Have you looked at one of:
- System.Threading.Timer
- System.Timers.Timer
- System.Windows.Forms

All of which provide timers that will execute a specific routine after a
specific amount of time within your program. Of course you program needs to
be running to be able to use them. Obviously some are more appropriate then
others depending on the type of application you are creating.

If you need a task to execute at a specific time when you program is not
running, I would recommend using Schedule Tasks under Windows Control Panel.

Hope this helps
Jay
 
Back
Top