Stepping Out of a Function (Windows Embedded CE 6.0)
1/5/2010
You can use debugger options to step out of function execution, or execute a particular function and then pause after the function exits.
The Step Out menu option executes the remaining lines of a function in which the current execution point lies. The next statement displayed is the statement following the procedure call. All of the code is executed between the current and the final execution points. Available in break mode only.
To step out of a function
Start debugging and execute the application to some point inside a function.
From the Debug menu, choose Step Out.
- or -
On the Debug toolbar, choose the Step Out button.
- or -
Press Shift + F11.
The debugger continues until it has executed the return from the function; then it pauses.
See Also
Tasks
Stepping Over a Function
Stepping Into a Function