‎2008 Jul 21 7:32 AM
how we can analysis the reports PLS give me sutiable information \[removed by moderator\]
Edited by: Jan Stallkamp on Sep 3, 2008 3:52 PM
‎2008 Jul 21 7:42 AM
you mean to say to understand the code
if yes
then you should know something about screen events sequence
rest
best practice according to me is
1. Execute the code
2. enter /h in command line and press enter to start debugging
3. now execute the the code you will be directed to next executable statement
4. by pressing F5 you can execute one line at a time
5. by F6 a block a t a time
6. by F7 to return back to last calling statement responsible to call the subroutine
7. to bypass all debugging statements to next breakpoints
using this scenario and breakpoints you can easily analyze the code.
read more regarding debugging for quick approach
‎2008 Jul 21 7:42 AM
you mean to say to understand the code
if yes
then you should know something about screen events sequence
rest
best practice according to me is
1. Execute the code
2. enter /h in command line and press enter to start debugging
3. now execute the the code you will be directed to next executable statement
4. by pressing F5 you can execute one line at a time
5. by F6 a block a t a time
6. by F7 to return back to last calling statement responsible to call the subroutine
7. to bypass all debugging statements to next breakpoints
using this scenario and breakpoints you can easily analyze the code.
read more regarding debugging for quick approach
‎2008 Jul 24 7:20 AM