Friday, 13 March 2015

Useful Shortcut Key For VS Debugging

Shortcut KeysDescriptions
Ctrl-Alt-V, ADisplays the Auto window
Ctrl-Alt-BDisplays the Breakpoints dialog
Ctrl-Alt-CDisplays the Call Stack
Ctrl-Shift-F9Clears all of the breakpoints in the project
Ctrl-F9Enables or disables the breakpoint on the current line of code
Ctrl-Alt-EDisplays the Exceptions dialog
Ctrl-Alt-IDisplays the Immediate window
Ctrl-Alt-V, LDisplays the Locals window
Ctrl-Alt-QDisplays the Quick Watch dialog
Ctrl-Shift-F5Terminates the current debugging session, rebuilds if necessary, and starts a new debugging session.
Ctrl-F10Starts or resumes execution of your code and then halts execution when it reaches the selected statement.
Ctrl-Shift-F10Sets the execution point to the line of code you choose
Alt-NUM *Highlights the next statement
F5If not currently debugging, this runs the startup project or projects and attaches the debugger.
Ctrl-F5Runs the code without invoking the debugger
F11Step Into
Shift-F11Executes the remaining lines out from procedure
F10Executes the next line of code but does not step into any function calls
Shift-F5Available in break and run modes, this terminates the debugging session
Ctrl-Alt-HDisplays the Threads window to view all of the threads for the current process
F9Sets or removes a breakpoint at the current line
Ctrl-Alt-W, 1Displays the Watch 1 window to view the values of variables or watch expressions
Ctrl-Alt-PDisplays the Processes dialog, which allows you to attach or detach the debugger to one or more running processes
Ctrl-D,VIntelliTrace Event

No comments:

Post a Comment