< Day Day Up > |
Recipe 5.7 Running to a Line of Code You Select5.7.1 ProblemYou want to stop execution at a specific line of code that doesn't have a breakpoint. 5.7.2 SolutionSelect Run Run to Line. 5.7.3 DiscussionBesides resuming execution until a breakpoint is encountered, you also can use the Run Run to Line option. Just click a line, and select Run Run to Line; execution will continue until that line is reached. This option is often extremely useful while debugging to skip over large sections of code and to set ad hoc breakpoints on the fly. 5.7.4 See AlsoRecipe 5.3 on setting up a debugging session; Recipe 5.4 on setting a breakpoint; Recipe 5.5 on stepping through your code; Recipe 5.6 on running code until a breakpoint is encountered. |
< Day Day Up > |