Visual Studio Short Keys
Efficient programmers use short keys in IDE like Visual Studio. This saves time and in many cases makes the work run faster also. I also love short keys. They are smart! And there also go some tricks that help make your visual studio days a party! I have listed here some short cuts and some tips with the hope that this will be helpful to you all.
Visual Studio Short-cuts
- Ctrl+F5 to run the website without debugging. F5 only will run the website in debugging mode.
- Stop Debugging: Shift+F5
- Restart Debugging: Ctrl+Shift+F5
- Break All: Ctrl+Alt+Break
- F11 to debug line by line downwards from the toggle point. This works with F10 also. In fact you can see F10 assigned for this task. See Debug menu in the visual studio.
- F9 to toggle a break point.
- To delete all the break points at once: Ctrl+Shift+F9. If you only wish to disable the break points you can go down the Debug menu.
- Ctrl+S to save the current document. Ctrl+Shift+S to save all the documents at once.
- Print a document directly from the visual studio? Press Ctrl+P. This will bring the print dialog.
- Ctrl+F to find a text. A find dialog will be displayed. Then you are left with a number of options.
- Ctrl+H or Ctrl+Shift+H for find and replace.
- Ctrl+G to go to the specific line number in the current document.
- Open the web browser right from within the visual studio? Press Ctrl+Alt+R.
- Irritated switching back and forth the design view and code behind page of a file? Use F7 to navigate back and forth the files of a page.
- Press F4 to view the properties window for a control from the design page.
- To view the server explorer: Ctrl+S
- To view the solution explorer: Ctrl+Shift+L
- To view the output window: Ctrl+Alt+O
- To view the toolbox: Ctrl+Alt+X
- Press Shift+Alt+Enter to view/undo full screen.
- Press Ctrl+O to open a document from the project folder.
- Ctrl+F11 to view disassembly: the machine level code!
for more information click here
