If there a debugger STOP command that can enable to stop momentary the code currently executing, to allow to see variables etc. on the current excuting module, and then pressing F5 to continue the execution.
LIke
STOP in vb6
This can allow me a long loop that read a file or many file, stop the execution, verify variables, and then continue.
The goal is to allow to execute a long loop up to a certain point and if it reach that point it stop to go in debug mode like this
and this is without using breakpoints on that block of code
LIke
STOP in vb6
This can allow me a long loop that read a file or many file, stop the execution, verify variables, and then continue.
The goal is to allow to execute a long loop up to a certain point and if it reach that point it stop to go in debug mode like this
and this is without using breakpoints on that block of code
B4X:
' Very simple code
For i = 0 to 10000
if i = 137 then [B]STOP [/B] ' [I]stop executing and go to debug mode view[/I]'
' do other stuff
Next