Hi,
I'm using a NotifyIcon control in one of my child (modal) forms and it is working fine. SHowing balloon tips as expected, handling mouse events etc... It doesn't however vanish when I would expect it to. Specifically, when i exit the child form and the parent is back in control the icon still remains. It's tooltip is accessible so it is very much "alive" as it were.
When I then exit my application as a whole the image still remains until the point i hover the cursor over it. Once moused it disappears.
How can I get it to behave normally? Ok normally is a bad word :-0 How can I get it to disappear when the form that created it disappears?
Could someone explain what is causing this as well, I thought .net was supposed to clean up after itself?
G
EDIT: If I call the Dispose method in the form closed evernt this works, but do I really have to do this? G