Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
See more:
Hi,

Iam Showing the Validation Message in the status bar.so when the validation message is shown a

Popup/Notification must be also generated from the status bar not from SystemTray.how can i achieve this.
C#
toolStripStatusLabel1.Text = "My Alert Message";

      notifyIcon1.Text = "My Alert Message";

      notifyIcon1.BalloonTipText = "My Alert Message"";

      notifyIcon1.Visible = true;

      notifyIcon1.ShowBalloonTip(1000);


Regards,

sajith
Posted
Comments
a1mimo 21-Oct-12 18:07pm    
I think you already have the answer just remove the extra quotation mark you put before the semi colon in the third line and it will work fine
sajithnet 19-Nov-12 3:16am    
Sorry for very late reply almino,Please view the below link. http://social.msdn.microsoft.com/Forums/en-AU/wpf/thread/5a81d39d-a77c-470e-9b73-d664490ffa4f

1 solution

C#
public static void ShowMessage(string _class, string msg, System.Web.UI.HtmlControls.HtmlGenericControl divMessage, Literal ltlMessage)
       {
           divMessage.Style.Add("display", "block");
           divMessage.Attributes.Add("class", _class);
           ltlMessage.Text = msg;
       }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900