NotifyIcon question?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have configured the NotifyIcon to display my applications Icon in the
System Tray. The question is, "How do you get the windows form application
not to display in the taskbar?" I have tried to use this: this:
ShowInTaskbar=false; but it will minimizes the application but will still
show above the taskbar. Any ideas?

Thank you,
Terry
 
When you minimize the form you should show the notifyicon and hide the form
by calling the Hide() operation. To display the form hide the notifyicon
when clicked and call the Show() operation of the form

Gabriel Lozano-Morán
 
Thank you,
I used the resize_form to use the Hide() and I used the double click of the
notifyicon to use the show() and Activate(). Thanks for the response!

Terry
 
Back
Top