Hide Balloon Tip

P

Paul Cheetham

Hi,

I have a Windows application (VS2005) where I am using a notifyIcon in
the tray, and showing a balloon tip when certain events occur.

No matter what I set the timeout to, the balloon tip will not disappear
unless it is interacted with.
I am trying to get it to pop up for a few seconds and then go away.

I thought of using another timer and hiding it, but there doesn't appear
to be a way of hiding it.


Can anybody help me here?


Thanks.



Paul
 
V

VJ

more like MSN Messenger alerts?.. I remember seeing a sample in GotDotNet
web page or in CodeProject, not sure. You can chk both

VJ
 
M

Mohammed Taskeen

Try setting visibility of notifyicon to false and then immediately to true.

notifyIcon1.Visible = false;
notifyIcon1.Visible = true;
 

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