Debug Toolbar

alt text

alt textDesign Mode - Toggles design mode.
alt textRun / 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).
alt textBreak - Switches from run time to break mode.
alt textReset - Switches from break mode or run time to design time.
alt textToggle Breakpoint - Defines a line in a module where Visual Basic suspends execution of the application (F9).
alt textStep Into - Runs the next executable line of code in the application and steps into procedures (F8).
alt textStep Over - Executes the next executable line of code in the application without stepping into procedures (Shift + F8).
alt textStep Out - Executes the remaining lines of the current procedure and breaks at the next line in the calling procedure (Ctrl + Shift + F8) - check
alt textLocals Window - Displays the Locals window to show the values of all the local variables.
alt textImmediate Window - Displays the Immediate window to allow you to to run code or query values while the application is in break mode (Ctrl + G).
alt textWatch Window - Displays Watch window to show values of selected expressions.
alt textQuick Watch - Displays the Quick Watch window to show the values of expressions and variables while the application is in break mode (Shift + F9).
alt textCall 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