Should Be Simple - Break VB.Net when a msgbox is on the screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm new to .Net.

In VB6 if I was debugging and had a Msgbox on the screen, pressing
CTRL+BREAK would interrupt code execution. This doesn't work in .Net, it
just seems to click on "OK" and move on in code.

Is there an easy way to do this?
 
Shawn,

Just set a breakpoint in your code, that is the first and easiest step.
You can as well set temporaly "Stop" in your code.

Cor
 
Back
Top