↧
Minimizing to System Tray
A simple solution, once you see it. Create the following, then add the code to your form.A ToolStripMenuItem named "TrayToolStripMenuItem", inside ofA ContextMenuStrip named "TrayMenuStrip", inside ofA...
View ArticleMinimizing to System Tray
me.hide wont put the application in the system tray but will show in the taskbar if the form showintaskbar property is true. If this is what you want then setting the icon for the form should change...
View ArticleMinimizing to System Tray
Private Sub mnuMinimize_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuMinimize.Click Me.Hide() End Sub(that "minimizes" to the system tray by hiding the...
View Article