Hide balloon tip icon

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

Guest

I create a balloon tip in the system tray using:

notify.ShowBalloonTip(10000, "Text", "More Text", ToolTipIcon.Info);

After the time expires I want the icon to go away. The balloon disappears,
but I can't reliably get rid of the icon. What's the right way to do that?
 
Dave,
After the time expires I want the icon to go away. The balloon disappears,
but I can't reliably get rid of the icon. What's the right way to do that?

You could enable a Timer with an interval of 10000 and hide the icon
when it ticks.


Mattias
 
Hi Dave,

In addition, please make sure you dispose the NotifyIcon.

I hope the above information is helpful for you. If you have any questions,
please feel free to let me know. Thanks and have a nice day!

Best Regards,

Terry Fei [MSFT]
Microsoft Community Support
Get Secure! www.microsoft.com/security

--------------------
 
Back
Top