Himanshu
Himanshu

Reputation: 1

How can I debug & fix my crashing winforms app?

My winforms based application (developed on VS 2005) getting crashed after some time.The event viewer shows exception Event ID 1023

NET Runtime version 2.0.50727.1433- Fatal Execution Engine Error

and 1000

Faulting application xxx.exe, version 2.1.3.6, stamp 4ddbbe56, faulting module mscorwks.dll, version 2.0.50727.1433, stamp 471ef729, debug? 0, fault address 0x00018265c.

I tried to reinstall dotnet framework 2.0 with sp2 but with no luck.

Followed article to fix this issue but issue remains.

http://support.microsoft.com/kb/913384

Application is working on the system with admin rights.

Upvotes: 0

Views: 153

Answers (1)

Hans Passant
Hans Passant

Reputation: 942508

A FEEE is thrown when the CLR notices that its internal state is corrupted. That is almost always the garbage collected heap, destroyed by unmanaged code. It can be very hard to diagnose. Early versions of the CLR had some bugs that could cause it too but they have been all flushed out. Try to isolate the problem by looking for bad pinvoke declarations or mis-behaving COM components used in your program.

Upvotes: 1

Related Questions