Thursday, May 15, 2008

What is the purpose of break mode in the debugging process?

Break mode stops the application and lets you check your code one statement
at a time. In addition, usiong the various Visual Basic debugging tools, you can
also wlak through your code in large blocks, such as by procedure or run to the
point where you have placed the insertion point. This can be useful when you
wish to "step over" many lines of code that you already know run correctly.

Your Title