Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I want to show the notify icon when i add some record to database.
Posted
Comments
CHill60 23-Apr-15 8:09am    
You have our permission to do that.
If you have a question regarding this then please indicate which platform you are referring to and where you expect this icon to appear, preferably including the code you have already tried

1 solution

Use the Notify Icon Component's ShowBallonTip method. It will show the icon & a notification text.

C#
notifyIcon.BalloonTipText = "Text to show";
notifyIcon.BalloonTipIcon = ToolTipIcon.Info; //icon type
notifyIcon.BalloonTipTitle = "Title Text";
notifyIcon.ShowBalloonTip(1000); //time in ms
 
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