I need to make my program minimize to the system tray but haven't got a clue how to do it anyone got an idea???
i'm using vb.net
Printable View
I need to make my program minimize to the system tray but haven't got a clue how to do it anyone got an idea???
i'm using vb.net
In your form you can do:
VB Code:
Me.WindowState() = FormWindowState.Minimized
That will minimize it. For the system tray, look at this article for an idea (it's in C# but you can translate to vb):
http://msdn.microsoft.com/library/de...rp06102002.asp
Hope this help you!
i have found out how to do it, didn't notice the notifyIcon function.