I made a little Windows Forms program to do some auto backup of some files on my disk. Right now I need to push a button before it is executed, but I want to make the progra
One option is to use a timer. This requires that your program keep running.
If you want to use a timer then set it to fire (every second, for example)
myTimer.Interval = 1000;
In the delegate function that's called, compare the current time with your target time and if they match, launch your backup process.