View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Dana DeLouis Dana DeLouis is offline
external usenet poster
 
Posts: 947
Default How to "step into" in the middle of a long piece of code

Is there an easier way to step into exactly where you want to, instead of
dragging the arrow down? Like a "step into" at the cursor, option?


Two options that come to mind are selecting your line of code and hit F9 to
set a breakpoint.
(another option later is to click the red dot to toggle on/off)

Another is to start with F8 as you are doing, then Right Click the code of
interest, and select "Run to Cursor."

--
HTH :)
Dana DeLouis


"SteveC" wrote in message
...
Hi,

Currently I press F8 to step into a code. Then I have to select a yellow
arrow and drag it down to where I want to start viewing the code, step by
step.

Is there an easier way to step into exactly where you want to, instead of
dragging the arrow down? Like a "step into" at the cursor, option?

thanks...