vote up 1 vote down star

I want to run program on background . pref C# I want put icon in the tray. On specified time it’s synchronizes folders (I know how to sync folders) . How to run it on background and start sync ( for example at 2am)?

flag

5 Answers

vote up 3 vote down

You need to consider using the windows scheduler service.

link|flag
vote up 1 vote down

I very often use Notify Icon on my applications which comes with Visual Studio, http://www.developer.com/net/csharp/article.php/3336751 as for start syncing, you can call a function on another thread which will measure time every second and if it is 2am you can call another function in another thread to sync folders (you can use also a timer component).

Resources:

Notify Icon: http://www.developer.com/net/csharp/article.php/3336751

C# Threading: http://www.albahari.com/threading/

Timer Component: http://msdn.microsoft.com/en-us/library/system.windows.forms.timer.aspx and http://www.codeproject.com/KB/miscctrl/TimeSheet.aspx

link|flag
vote up 1 vote down

If I were you, I'd use the scheduler services in Windows.

Having a service, keeping an icon in the tray, etc. means you'll be filling up valuable screen space and consuming resources. What's more, the user will need some way to configure the application so they can choose whether it starts with Windows or not; if you provide this configuration, it'll be necessarily different to how every other application does it.

A scheduler task, on the other hand, only needs one process - the task scheduler itself - and the user can disable or delete the task themselves. Both the Apple and Google automatic updater processes now run in this way, for example.

link|flag
vote up 0 vote down

To run "in background"

Form.Visible = False
Form.ShowInTaskbar = False

To start the synchronization, use a Timer and...

  • Check the time every minute, start synch if the time matches
  • OR calculate the interval Now->TimeToStart, set it, start the Timer, and reset it to 24 hours on the first tick

You might also think about creating a service if you want it to be a background process only.

link|flag
vote up 0 vote down

Thank you all for quick response! Personally I like Vincent van Den Bergh answer. Make form Visible=false; And run timer on background; Very simple staff. What I was thinking of before

link|flag
You're welcome :) – Vincent Van Den Berghe Nov 24 '08 at 20:43
You should mark it as an answer then. And maybe put what you wrote as a comment to his answer and delete this answer (since it is not an answer...) =) – Svish Aug 2 at 20:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.