What would cause Problem Signature 09: System.ObjectDisposedException?

TexasAggie

Newcomer
Joined
Oct 30, 2006
Messages
23
What would cause this error?

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: deer daq.exe
Problem Signature 02: 5.3.6.35271
Problem Signature 03: 502d89fa
Problem Signature 04: mscorlib
Problem Signature 05: 4.0.0.0
Problem Signature 06: 4ee9a9f1
Problem Signature 07: 12df
Problem Signature 08: 13
Problem Signature 09: System.ObjectDisposedException
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1033
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt
 
Is this your code or a third party application? If it is your code then does this occur when running under a debugger? If so what line throws this error?

The error message itself does explain the underlying problem though, somewhere in the code there has been an attempt to use an object that has been disposed of and the object in question is raising this error.
 
Back
Top