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: