16. Debugging Your Application : How Debugging an Application Works : How You Can Control Execution of Your Application : Continue Button
 
Share this page                  
Continue Button
With two exceptions, the Continue button causes execution to continue until a break condition is encountered or until the application terminates.
One exception is when you have used the Step button, but a break occurs before reaching the statement following the statement where you issued the step command. In this case, if you click the Continue button, execution continues only until you reach the statement following the one where you stepped.
The other exception is when you have used the Step To End button, and a break occurs before reaching the next end, return, or resume in the procedure or block where you used the Step To End button. In this case, if you click Continue, execution continues only until you reach the first end, return, or resume statement in the block or procedure where you executed the Step To End command.