hazejean Posted August 7, 2003 Posted August 7, 2003 How do I set breakpoints and show current values of variables at each breakpoint. thanks Quote
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 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: ? fThat will print '5' underneath your life. You can execute any available function that way too. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.