GeekZilla
Balloon Tips from the System Tray
You can really easily add system tray function to .NET windows forms by dragging the NotifyIcon object onto your form.
You can then use this to display balloon tips from the system tray with the code below:
myNotifyIcon.ShowBalloonTip(500, "Title", "Tip text", ToolTipIcon.Info);
Very easy and it looks nice too
Author Dave Howard
I have been involved in IT development for the last 10 years - a lot of it around desktop applications and telecoms.
Comments
spscoder said:
thanks for the tip! It works! And I have spent the last 4 hours looking for how to do it.
Thank you again
Dilip said:
Thanks a lot very much use full tip!!!