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)?
|
|
|
|
|
|
|
You need to consider using the windows scheduler service. |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
|
|
To run "in background"
To start the synchronization, use a Timer and...
You might also think about creating a service if you want it to be a background process only. |
||
|
|
|
|
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 |
||||
|
