[.NET] ToolTip and "Cannot access a disposed object" exception

The "Cannot access a disposed object" exception is a nightmare for .NET developers.
Software Development
by Jey Geethan | December 12, 2008

The "Cannot access a disposed object" exception is a nightmare for .NET developers. ;) Sometimes, this exception causes the worst backslash for a development project. And looking at exception details, we will find that the call stack will point to


"at System.Windows.Forms.Control.CreateHandle()
 at System.Windows.Forms.Control.get_Handle() "


Or


"at System.Windows.Forms.Form.CreateHandle()
 at System.Windows.Forms.Form.get_Handle() "


Since, we do not know from where the problem stems, it becomes a trial-and-error method to find out the source of the problem. After some days of research, I found out the following facts about the problem. Here it goes.

Reason :

This exception occurs only when we try to access any disposed object, as it says. But the problem is, we would have never written statements that explicitly access a disposed object! So the real reason would be some unseen code that accesses the disposed Form or Object. In my case, the black sheep was the ToolTip control.

I had used the ToolTip to show messages on different forms. But the internal architecture of the ToolTip has been coded by a novice at Microsoft i guess, and its faulty. By going through reflection i found that it uses a variable to store the current form in which it the message is being displayed. I had used the same instance of ToolTip to show messages on other forms too. When I used the ToolTip to show messages on another form after the previous form has been closed, the ToolTip tries to access the form in its private variable (the closed/disposed form) and boom! It throws the exception!

Another instance where this can happen is - Dockable Container, this happens with ToolTip when the container is changed/docked to another parent. Now since, the parent is changed, when the ToolTip tries to access the parent and it is already disposed. So the exception is thrown.

Solution:

The solution I devised was to create a new ToolTip instance for every Form that I showed on the screen. This worked around the problem and it was solved. For those, with Dockable Container problem, try to recreate the controls when they are moved or docked. This will solve the problem.

And microsoft is supposed to have corrected this problem in v3.5 framework. But I haven't checked it out yet.


Related Articles

[.NET Error] Update requires a valid UpdateCommand when passed DataRow collection with modified rows
Software Development

[.NET Error] Update requires a valid UpdateCommand when passed DataRow collection with modified rows

by Jey Geethan | March 06, 2008
This is an error, with which i was dumbfounded for weeks. But the solution is simple after understanding why it's happening

Top 4 Reasons Why You Should Participate in Hackathons
Software Development

Top 4 Reasons Why You Should Participate in Hackathons

by Jey Geethan | August 05, 2018
Hackathons help to keep an active engineering culture alive. Learn here why you should participate and may be try to win them