‎2007 Mar 14 7:37 AM
Hi,
Any one knows how to skip a line in debugging mode. If it is possible then how to skip multiple lines.....
Thanks in Advance
‎2007 Mar 14 7:51 AM
hi
in the debugging mode,
click the line (i mean put the cursor by single click) which you want to skip to.
(click) on the menu Debugger-->Go to Statement.
the lines in between can be skipped without processing.
hope this helps
thx
pavan
‎2007 Mar 14 7:40 AM
‎2007 Mar 14 7:40 AM
Hi,
When you find the <b>Perform</b> Statements then if you say F6 you will skip that complete code.
So you observe that in code while debugging and can skip.
Regards,
Anji
‎2007 Mar 14 7:47 AM
If you mean by skipping lines that the system doesnt process it then I am sorry it is not possible you have to go back to the code and comment the particolar lines.
in case you just fant to save time and dont want to see the detailed processing then either press F6 for
performs
FMs
...etc
or just scroll down the debugging page by the down arrow button and set a Breakpoint where you want to land up directly,press F8 and you are there on the Breakpoint but in this case system still processes the whole code it is just you dont see it processing line by line.
I hope it is clear.
Thanks
‎2007 Mar 14 7:54 AM
Hi,
In debugging,
F5 is used to debug line by line code it will nevigate to each step wheter it is a method call or function it will go in side it.
F6 u will move line by line but does now enter inside any function call
F7 will return u to the upper level
Ex if u are inside any method that is called from any other main method u will move to the main method
Regards
Gaurav
‎2007 Mar 14 7:51 AM
hi
in the debugging mode,
click the line (i mean put the cursor by single click) which you want to skip to.
(click) on the menu Debugger-->Go to Statement.
the lines in between can be skipped without processing.
hope this helps
thx
pavan
‎2007 Mar 14 7:59 AM
While debugging, put the cursor on the line which you want to execute and then in menu bar Debugging->Goto Statement, your cursor will be on that line and the middle lines will be skipped.
I hope it helps.
Best Regards,
Vibha
<b>*Please mark all the helpful answers</b>
‎2007 Mar 14 8:37 AM
Thanks Pavan,
Got the Solution.... Thank you so much....it's working
‎2007 Mar 14 8:57 AM
you have lines 1 to 10.
suppose you don't want debug the lines from 3 to 6.
Then you can do the following to skip the line from debugging.
Double click on the line 2.
Double click on the line 7.(not on the individual variables)
Now suppose your debugging cursor is at line one.
When you came to line 2 then you can press F8.
Then the cursor will directly goes to the line 7.
This should be done manually only.
Regards,
Balakrishna.