Hi,
I have a small win form app that consists of a form and a systray icon.
When the user closes the app from the systray I get the ObjectDisposedException as some controls (task icon) still try and access the main windows form.
I have tried wrapping the code that access the systray in a if(!this.IsDisposed) wrapper, however the check for this is always bypassed.
Am I missing something that I should be doing here? This seems quite trivial.
Thanks.