Debug Toolbar
Design Mode - Toggles design mode. | |
Run / Continue - Run switches from design time to run time. Continue switches from break mode to run time. When in break mode the name of the button changes to Continue (Ctrl + F8). | |
Break - Switches from run time to break mode. | |
Reset - Switches from break mode or run time to design time. | |
Toggle Breakpoint - Defines a line in a module where Visual Basic suspends execution of the application (F9). | |
Step Into - Runs the next executable line of code in the application and steps into procedures (F8). | |
Step Over - Executes the next executable line of code in the application without stepping into procedures (Shift + F8). | |
Step Out - Executes the remaining lines of the current procedure and breaks at the next line in the calling procedure (Ctrl + Shift + F8) - check | |
Locals Window - Displays the Locals window to show the values of all the local variables. | |
Immediate Window - Displays the Immediate window to allow you to to run code or query values while the application is in break mode (Ctrl + G). | |
Watch Window - Displays Watch window to show values of selected expressions. | |
Quick Watch - Displays the Quick Watch window to show the values of expressions and variables while the application is in break mode (Shift + F9). | |
Call Stack - Displays the Call Stack dialog box while in break mode that shows all procedures that have been called but not yet run to completion. |
Important
Step Over is similar to Step InTo, but differs in the way it handles a call to another procedure.
© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext