Hi guys.. I created a program and I want to hide the main form in the tray but the entire program should be running (program should not appear in taskbar). Do you know how to do it? Thanks.
How to keep the program running but minimized in tray?
Collapse
X
-
In form load event you could add this...
In case your program does not require any user interaction and runs continously in background then windows service would be better choice..Code:this.Hide(); this.ShowInTaskbar = false;
Comment