H Herfried K. Wagner [MVP] Dec 8, 2006 #2 Is there a way to have a ballon pop up if you mouse over a tray icon? Click to expand... Check out the NotifyIcon component and its methods, properties, and events.
Is there a way to have a ballon pop up if you mouse over a tray icon? Click to expand... Check out the NotifyIcon component and its methods, properties, and events.
M Miro Dec 8, 2006 #3 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
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