Home All Groups Group Topic Archive Search About
Author
8 Dec 2006 11:04 AM
JuanDegorgio
Is there a way to have a ballon pop up if you mouse over a tray icon?

Author
8 Dec 2006 11:51 AM
Herfried K. Wagner [MVP]
<JuanDegor***@aol.com> schrieb:
> Is there a way to have a ballon pop up if you mouse over a tray icon?

Check out the NotifyIcon component and its methods, properties, and events.

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://dotnet.mvps.org/dotnet/faqs/>
Author
8 Dec 2006 2:24 PM
Miro
I pulled this from an old post - I havnt used it yet, but I pulled it cause
ill need it.

notifyIcon1.BalloonTipTitle = "Balloon Tip Title"
notifyIcon1.BalloonTipText = "Balloon Tip Text."
notifyIcon1.BalloonTipIcon = ToolTipIcon.Error

notifyIcon1.ShowBalloonTip(30)   'Shows the ballon tip for 30
milliseconds

Hope it helps.

Miro



<JuanDegor***@aol.com> wrote in message
Show quoteHide quote
news:ukhin21dkqk0f75qnakgs0b6ok6154in1q@4ax.com...
> Is there a way to have a ballon pop up if you mouse over a tray icon?