Unhandled exceptions

Ramon

Newcomer
Joined
Feb 17, 2003
Messages
18
Help me guys.

Before, during compilation, I can debug my program whenever an error occured like this :

1. A message box appeared with a button : Break, Debug, Continue
2. When I click Debug it will return me to the code window where
it will highlight (in yellow) the line where the error occured.
3. After making correction to the code, I will simply click resume next to continue processing the application.

Now, when an error occured in my program during compilation, I received a message box saying "An unhandled exception occured in your program ...", "See below ... jit-debugging ...", "<Configuration .... >" and so on with a buttons, Detail and Continue.

It gives me a hard time debugging my program.

Is it possible to use the first one again?
 
Because of the way VB.NET compiles and runs, you cannot edit
code while the application is debugging; you need to stop it,
change the code, and recompile to debug the changes.
 
Back
Top