Effective Use of Visual Studio 2005 - Named Commands
Command Window: Ctrl+Alt+A Named commands are used to access VS features from Command Window. Visual Studio 2005 provides full intellisense support in the command window. I experienced that using named commands is much faster than accessing these features with mouse. Named commands allow you to access and use menu commands in the command window. To use named commands, simply type the name of menu. Press '.' and VS will provide intellisense. Type the name of the menu option or select it from intellisense. Example : To access Find Results 1 window you have to 1. Click on the 'View' menu and then 2. Click on the 'Find Results' and 3. Finally choose 'Find Results 1'. Now if you want to use named commands, 1. Press Ctrl+Alt+A to activate command window. 2. Type View.findresults1. You don't need to type full text. Intellisense provides yoy write text. Just press enter. Some Examples of Named Copmmands: Window.NewWindow : Open a new window on your...