error application has genarated exception that couldn't handled

M

Murthy

Hi,
After genarating the exe when i run the exe the following
error is comming.
Common Language Runtime Debugging Services
Application has generated an exception that could not be
handled.
Process id=0xdec (3564), Thread id=0xdf0 (3568)

When I click CANCEL to debug, I get this error-message:

No debugger found.
Registered JIT debugger is not available. An attempt to
launch a JIT debugger with the following command resulted
in an error code of 0x2 (2). Please check computer
settings.
cordbg.exe !a 0xdec

Help!!

I've used the search and couldn't find the answer. For one
user this problem was fixed by downloading the .net-
framework, but I already have it installed.


Plz any one help me.
 
G

Guest

Basically it means there's some exception happening in the code that hasn't
been handled. I guess the program was running on a computer without Visual
Studio.NET when it happened. That's why debugger's not available.

Put your code in try-catch blocks and use tracing (or message boxes) to
print out exception messages to help you figure out what's going on...
 
G

Guest

Run your application in the VS IDE on Debug build & then you will have the
debugger available. Although, the error you get... when clicking the DETAILS
button you will see which function/Sub it occured in.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top