Application Stop Working

Hello

I have a problem when my application starts.The error report windows Xp returns the following text.

EventType: clr20r3 P1: P2 cru.exe: 2011.1.6.10 P3: 2a425e19P4: system.windows.forms P5: 2.0.0.0 P6: P7 4889dee7: 1521P8: 12f P9: System.ObjectDisposedException

Cru.exe is the executable of my application.If I remove my application AutomaticUpdate works perfectly.

Try running your app in a debugger so you can see exactly where the exception is occurring. My guess is that you're trying to access an object that has already been destroyed. When the AutomaticUpdater closes your app to install an update it immediately exits your app in the form's constructor. So don't usen objects that have been already destroyed if you're using any "Closing" "AppClosing" or "FormClosing" events.