breakpoint

hazejean

Well-known member
Joined
Jul 11, 2003
Messages
68
How do I set breakpoints and show current values of variables at each breakpoint.

thanks
 
Click the gutter to the left of the code window to set the breakpoint at the line you click, and when it stops at the breakpoint, you can either use the Locals window to look at the values of all currently-in-use variables, add a variable-watch to the Watch window, or use the Command Window to evalute a function or variable:

In the Command Window, if f is 5:
Code:
? f
That will print 5 underneath your life. You can execute any available function that way too.
 

Similar threads

Back
Top