in a C # application, which has no graphics at all, and performs many network operations, I should be able to show notification bubbles (above all, for a few seconds) near the icon tray on certain events.
I looked at this: http://www.codeproject.com/KB/miscctrl/taskbarnotifier.aspx
But without success. The problem is that windows created there will not be displayed on asynchronous events. It seems that I need a basic form in which I add delegates to work, and I don't need it.
All the parameters that I have seen so far require a form in my application, but this will not happen. Is it then impossible to have these bubbles? Any ideas? Should there be a way to add an icon to the tray displaying messages without restrictions and without a GUI?
Jerome
source share