NotifyIcon question?

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
 
G

Gabriel Lozano-Morán

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
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top