vote up 68 vote down star
122

VS is such a massively big product that even after years of working with it I sometimes stumble upon a new/better way to do things or things I didn't even know possible.

For instance-

  • Crtl-R,Ctrl-W - show white spaces. essential for editing python build scripts.

  • Under "HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor" Create a String called Guides with the value "RGB(255,0,0), 80" to have a red line at column 80 in the text editor.

What other hidden feature have you stumble upon?

flag

81 Answers

1 2 3 next
vote up 1 vote down

The most important feature I can't live w/o is VS.Net 2008. :P

link|flag
vote up 2 vote down

The Debugger :-) Beats Notepad by miles.

link|flag
1  
VS Debugger is Notepad when compared to windbg :) – Constantin Oct 7 '08 at 20:59
show 1 more comment
vote up 8 vote down

A lot of people don't know or use the debugger to it's fullest - I.E. just use it to stop code, but right click on the red circle and there are a lot more options such as break on condition, run code on break.

Also you can change variable values at runtime using the debugger which is a great feature - saves rerunning code to fix a silly logic error etc.

link|flag
vote up 12 vote down

Sara Ford has this market cornered.

http://blogs.msdn.com/saraford/default.aspx

More Visual Studio tips and tricks than you can shake a stick at.

Some others:

  • The Visual Studio 2005 and 2008 3-month trial editions are fully-functional, and can be used indefinitely (forever) by setting the system clock back prior to opening VS. Then, when VS is opened, set the system clock forward again so your datetimes aren't screwed up.
  • But that's really piracy and I can't recommend it, especially when anybody with a .edu address can get a fully-functional Pro version of VS2008 through Microsoft Dreamspark.
  • You can use Visual Studio to open 3rd-party executables, and browse embedded resources (dialogs, string tables, images, etc) stored within.
  • Debugging visualizers are not exactly a "hidden" feature but they are somewhat neglected, and super-useful, since in addition to using the provided visualizers you can roll your own for specific data sets.
  • Debugger's "Set Instruction Pointer" or "Set Next Statement" command.
  • Conditional breakpoints (as KiwiBastard noted).
  • You can use Quickwatch etc. to evaluate not only the value of a variable, but runtime expressions around that variable.
link|flag
show 1 more comment
vote up 4 vote down
  • The memory windows, very useful if you're doing low level stuff.
  • Control + K , Control + F - Format selection - great for quickly making code neat
  • Regions, some love them, some hate them, most don't even know they exist
  • Changing variables in debug windows during execution
  • Tracepoints
  • Conditional break points
  • Hold down Alt and drag for 'rectangular' selection.
  • Control+B for a breakpoint, to break at function
  • Control+I for incremental search, F3 to iterate
link|flag
vote up 3 vote down

CTRL-D then type ">of " then file name. If the standard toolbar is up crtl-d put you in find combobox and there is now a dropdown with files in your solution that match the start of the filename you typed. Pick one and it will open it. This alternative to the open filedialog is awesome for big solutions with lots of directories.

link|flag
show 2 more comments
vote up 0 vote down

Here's an old blog article on some of the hidden debugger features in the expression evaluators.

link|flag
vote up 20 vote down
CTRL-K, CTRL-D

Reformat Document!
This is under the VB keybindings, not sure about C#

link|flag
1  
yes, works under C#, Web Designer, XML editor, CSS editor, XSD editor, JavaScript (to an extent). Most of the supported file types – Slace Sep 19 '08 at 8:19
6  
Ctrk-K, Ctrl-F for C++ – MSalters Sep 26 '08 at 11:01
1  
I use Ctrl-E, Ctrl-D – configurator Oct 10 '08 at 14:46
vote up 8 vote down

I'm not sure if it's "hidden", but not many people know about it -- pseudoregisters. Comes very handy when debugging, I've @ERR, hr in my watch window all the time.

link|flag
1  
I've heard @xxx is being phased out in favor of $xxx. FWIW, WinDbg also uses $xxx form. – Constantin Oct 7 '08 at 20:32
show 3 more comments
vote up 34 vote down

Sara Ford covers lots of loverly tips: http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx

But some of my favs are Code Snippets, Ctrl + . to add a using or generate method stub. I can't live without that.

Check out a great list in the Visual Studio 2008 C# Keybinding poster: http://www.microsoft.com/downloadS/details.aspx?familyid=E5F902A8-5BB5-4CC6-907E-472809749973&displaylang=en

link|flag
show 7 more comments
vote up 9 vote down

Ctrl-F10: run to cursor during debugging. Took me ages to find this, and I use it all the time;

Ctrl-E, Ctrl-D: apply standard formatting (which you can define).

link|flag
show 1 more comment
vote up 11 vote down

There has been a question about this earlier:

What are the best unknown features of Visual Studio .NET 2005?

link|flag
3  
now there is "Sorry, that page doesn't exist!" – zxcat Sep 15 at 16:15
vote up 4 vote down

Drag-drop text selections to the Watch window while in the debugger.

link|flag
vote up 15 vote down

Incremental search: While having a source document open hit (CTRL + I) and type the word you are searching for you can hit (CTRL + I) again to see words matching your input.

link|flag
3  
It's called ">i<ncremental search". – Constantin Oct 7 '08 at 20:33
vote up 17 vote down

How many times do you debug an array in a quickwatch or a watch window and only have visual studio show you the first element? Add ",N" to the end of the definition to make studio show you the next N items as well. IE "this->m_myArray" becomes "this->m_array,5".

link|flag
show 1 more comment
vote up 14 vote down

CTRL+SHIFT+V will cycle through your clipboard, Visual Studio keeps a history of copies.

link|flag
show 1 more comment
vote up 3 vote down

My favorite is CTRL+SHIFT+V, which will cycle through your clipboard history (Visual Studio keeps track of every time you copy).

link|flag
2  
Is there any "clipboar manager" there? so you can see what already is in there? – inazaruk Jun 19 at 11:55
vote up 52 vote down

Make a selection with ALT pressed - selects a square of text instead of whole lines.

link|flag
1  
Dude... that's slick – HBoss Sep 24 '08 at 19:37
6  
Ctrl-Alt will select whole words. Alt will change the size of the selection area by one character at a time. – firedfly Oct 15 '08 at 13:47
1  
This works in some other programs too, such as Word 2003. – Charles Anderson Dec 22 '08 at 9:07
2  
This works in MS Word and OO Writer as well. I've used it a lot. – Bård Aug 27 at 7:17
show 5 more comments
vote up 4 vote down

Ctrl-Minus, Ctrl-Plus, navigates back and forward where you've been recently (only open files, though).

link|flag
show 2 more comments
vote up 0 vote down

I always map control + alt + f4 to documents.CloseAllWindows in options>environment>keyboard.

Is somewhat more intuitive than using the mouse.

link|flag
show 1 more comment
vote up 21 vote down

You can drag code to the ToolBox. Try it!

link|flag
show 4 more comments
vote up 2 vote down

Shift+Alt+F10 brings up the built in refactoring menu. Great for adding method stubs from interfaces, and adding Using statements automatically for specific classes.

link|flag
show 1 more comment
vote up 4 vote down

Press the F8 key to cycle through search results. (Shift+F8 for reverse direction)

Hit F12 to go to definition of variable.

Shift + alt + arrow keys = Block select!

link|flag
show 1 more comment
vote up 1 vote down

I think the ability to right click on a Stored Procedure in Server Explorer and debug..

link|flag
vote up 3 vote down

When developing C++, Ctrl-F7 compiles the current file only.

link|flag
vote up 40 vote down

Tracepoints!

Put a breakpoint on a line of code. Bring up the Breakpoints Window and right click on the new breakpoint. Select 'When Hit...'. By ticking the 'Print a message' check box Visual Studio will print out a message to the Debug Output every time the line of code is executed, rather than (or as well as) breaking on it. You can also get it to execute a macro as it passes the line.

link|flag
show 1 more comment
vote up 1 vote down

Not exactly a hidden feature, but one thing I've done is add a "Start Without Debugging" button next to my "Start With Debugging" button. Just click the down arrow at the right end of the toolbar. Then select "Add or Remove buttons". Then Customize. In the commands tab select the Debug category. Find the Start Without Debugging command and drag it to where you want it on the toolbar.

link|flag
1  
CTRL-F5 is the shortcut for this, with the default settings. Great way to run a faster build, or to not hit your breakpoints. – Eddie Parker Jan 19 '09 at 18:18
vote up 1 vote down

My best feature is one I had to make myself.. It's a cpp/h flipper. If you are looking at the .h file, and hit this macro, (or its keyboard shortcut), it will open the cpp file, and vice-versa.

I can provide the source if anyone wants it.

link|flag
show 3 more comments
vote up -3 vote down

Visual Assist, in general, while a bit OT for this question, is a great app and really helps with the day-to-day running of visual studio. Their open-any-file and find-any-symbol windows are particularly awesome.

link|flag
vote up 1 vote down

Enable Intellisense in Skin Files

  1. Go to Tools->Options menu.
  2. Pick Text Editor -> File Extesion fom a tree at the left part of Options dialog.
  3. Type skin in Extesion text box.
  4. Select User Control Editor from Editor dropdown.
  5. Click Add and then Ok to close dialog and re-open your skin files.
link|flag
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.