debugger stops at application.Run on unhandled error

  • Thread starter Thread starter tolisss
  • Start date Start date
T

tolisss

when i get an unhadled error the dubbuger stops at the main procedure
at -->"Application.Run(new Form1())" and the stack is empty. But
if i run the application without the debuger a must more informative
window pops up giving all the error info i want. How can i get the
same behaviour when working inside the IDE

thnks in advance

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
The stack might be empty because the rest of the code is non-user code.
To see the stack trace including non-user code, right-click on a line
in the call-stack when debugging and select 'Show non-user code'

Can you give an example of the information given to you (via the popup)
when you run your program without the debugger?

Wal
 
Back
Top