I am guessing you are supposed to use the NotifyIcon as a icon in the system tray. So I set mine to when it is double clicked
VB Code:
  1. Dim que As New Form1
  2.         If que.WindowState = FormWindowState.Minimized Then
  3.             que.WindowState = FormWindowState.Maximized
  4.         End If
All that code does is add another icon in the tray. Nothing more. How do I fix?