Check out "System Tray Balloon Tips and Freeing Resources Quickly in .NET" by Paul DiLascia - it is in MSDN library that comes with VS .NET 2003 (or find it on the microsoft web)...
From the article:
"There are two kinds of tips associated with tray icons: an ordinary old-style tooltip that appears when the user moves the mouse over your tray icon and the newfangled balloon tip that appears when directed by your program."
The ballon popup is just what we need. The article shows the easy way to implement it. It is prettier then the regular popup but requires an action to activate - simple click/doubleclick on the tray icon should do the trick...
From the article:
"There are two kinds of tips associated with tray icons: an ordinary old-style tooltip that appears when the user moves the mouse over your tray icon and the newfangled balloon tip that appears when directed by your program."
The ballon popup is just what we need. The article shows the easy way to implement it. It is prettier then the regular popup but requires an action to activate - simple click/doubleclick on the tray icon should do the trick...