Debugger shortcut keys
Compiling program: F7
Run the program: CTRL + F5
Break point: F9
Run to Breakpoint location: F5
Single Step execution: F10
Single Step entry function: F11
End Debug: Shift+f5
Comment Code: CTRL+K,CTRL+C
Solution Comment Code: Ctrl+k,ctrl+u
PS: Some machines need to coordinate with FN for the turn function keys.
vs shortcut Keys
Edit. Delete Row Ctrl + Shift + L Delete all selected rows, or delete the current row if no row is selected.
Edit. Convert to uppercase Ctrl + Shift + U
Edit. Convert to lowercase Ctrl + U to change selected text to lowercase characters
Edit. Open a new line Ctrl + ENTER insert a blank line above the insertion point
Edit. Next to open a new line Ctrl + Shift + ENTER inserts a blank line below the insertion point. (so you don't have to first move the cursor to the beginning or end of the line)
Edit. Word deletion until the end of CTRL + DELETE Deletes the word to the right of the insertion point.
Edit. Comment Selection Ctrl + K,ctrl + C
Edit. Uncomment the selection Ctrl + K,ctrl + U
Edit. Selected word: ctrl+shift+ (left and RIGHT arrow keys) <-
Edit. Find the next F3 find the next occurrence of the last search text.
Edit. Find the next F4 find the previous match for the last search text.
Edit. End of document CTRL + END moves the insertion point to the last line of the document.
Edit. Document Start CTRL + HOME moves the insertion point to the first line of the document.
Edit. End of line end moves the insertion point to the end of the line.
Edit. Start of HOME moves the insertion point to the beginning of the line.
CTRL + TAB loops through the MDI child window, one by one.
Debugging:
Debug. Breakpoint CTRL + B Displays the Breakpoints dialog box, where you can add and modify breakpoints.
Debug. Call stack CTRL + ALT + C displays the Call Stack window to display all activities of the current thread of execution
Debug. Clear all Breakpoints CTRL + SHIFT + F9 clears all breakpoints in the project.
Debug. Jump out of SHIFT + F11 the remaining rows of the function where the current execution point is executing.
Debug. Breakpoint CTRL + B Displays the Breakpoints dialog box, where you can add and modify breakpoints.
Debug. Exception CTRL + SHIFT + E Displays the Exceptions dialog box.
Debug. Local variable CTRL + ALT + L Displays the local variables window to see the variables and their values for each procedure in the current stack frame.
Debug. Process CTRL + SHIFT + R Displays the Processes dialog box, which allows you to debug multiple programs at the same time in a single solution.
Debug. Restart CTRL + SHIFT + F5 to terminate the debug session, rebuild, and then start running the application from the beginning. Available for break mode and run mode.
Debug. Thread CTRL + ALT + H Displays the Threads window to view all threads of the current process and their associated information.
"System Operation shortcut Keys"
Windows+break: Display the System Properties dialog box
Windows+d: Show Desktop
Windows+m: Minimize All windows
Windows+shift+m: Restore minimized windows
Windows+e: Turn on "explorer"
Windows+f: Finding a file or folder
Windows+r: Open the Run dialog box
CTRL + Z Undo
Ctrl+y Anti-Revocation
Ctrl+w Closing the program
Alt shortcut keys
ALT + Enter view file properties
Shift+f10 the right menu of the selected file
ALT+F4 Closing the current program
ALT + SPACEBAR +c close window
ALT + SPACEBAR +n minimize the current window
ALT + SPACEBAR +r restore minimized window
ALT + SPACEBAR +x maximize Current Window
This article is from the "Rock Owl" blog, please be sure to keep this source http://yaoyaolx.blog.51cto.com/10732111/1750421
VS Debugger shortcut keys and system Shortcuts 2