i am using this code under my form1_load
notifyIcon1.Visible = true;
notifyIcon1.ShowBalloonTip(5000, "Welcome", "Hello " + User, ToolTipIcon.Info);
I even checked my registery and the value was 1. Why is the baloon not showing? I do have a icon form my notify icon. and it is showing up. The Baloon is not though!
You may need to post the rest of the code that's in your form's load event, but here's a couple of suggestions:
Also, note that the balloon tip isn't guaranteed to show. See the Remarks section on msdn's NotifyIcon.ShowBalloonTip Method article:
Looks like you forgot to set the Icon for it like this
Also please read for more inormation on issues with NI http://www.csharp411.com/notifyiconshowballoontip-issues/
Here is some sample code for what @MetroSmurf has already mentioned. Note that
this.InitializeComponent();
must be called before theNotifyIcon
is shown (usually in the form constructor).Also ensure that windows is configured to allow notifications. In Windows 7 right-click taskbar, click Properties, Customize... in the notification area, tick the Always show all icons and notifications on the taskbar option, click OK.