how to: baloon notification for NotifyIcon

  • Thread starter Thread starter Ram Baruch
  • Start date Start date
R

Ram Baruch

Hi,
I have a NotifyIcon object. The user sees it near the clock on the desktop.
Now, I want to tell the user that something happend (Like when Windows says
that updates are ready to be installed)- a small baloon that comes out of
the icon.
Does anyone knows how to do it?
Regards,
Ram.
 
Ram,

The NotifyIcon class doesn't have support for this, I believe. In order
to do this, you would have to access the API directly.

There is an article on CodeProject.com detailing how to do this. It is
titled "Displaying a Notify Icon's Balloon Tool Tip" and can be located at
(watch for line wrap):

http://www.codeproject.com/csharp/notifyballoon.asp

Hope this helps.
 
I had done it in Win32 and I would like to add that I had to get platform
SDK updates for the balloon thing,

--Saurabh
Nicholas Paldino said:
Ram,

The NotifyIcon class doesn't have support for this, I believe. In order
to do this, you would have to access the API directly.

There is an article on CodeProject.com detailing how to do this. It is
titled "Displaying a Notify Icon's Balloon Tool Tip" and can be located at
(watch for line wrap):

http://www.codeproject.com/csharp/notifyballoon.asp

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Ram Baruch said:
Hi,
I have a NotifyIcon object. The user sees it near the clock on the desktop.
Now, I want to tell the user that something happend (Like when Windows says
that updates are ready to be installed)- a small baloon that comes out of
the icon.
Does anyone knows how to do it?
Regards,
Ram.
 
its ok, I used the example and it works for me.
Thanks!

Saurabh said:
I had done it in Win32 and I would like to add that I had to get platform
SDK updates for the balloon thing,

--Saurabh
message news:%[email protected]...
Ram,

The NotifyIcon class doesn't have support for this, I believe. In order
to do this, you would have to access the API directly.

There is an article on CodeProject.com detailing how to do this. It is
titled "Displaying a Notify Icon's Balloon Tool Tip" and can be located at
(watch for line wrap):

http://www.codeproject.com/csharp/notifyballoon.asp

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Ram Baruch said:
Hi,
I have a NotifyIcon object. The user sees it near the clock on the desktop.
Now, I want to tell the user that something happend (Like when Windows says
that updates are ready to be installed)- a small baloon that comes out of
the icon.
Does anyone knows how to do it?
Regards,
Ram.
 

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

Back
Top