up vote 181 down vote favorite
260
share [g+] share [fb]

Visual Studio 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 were possible.

For instance-

  • Crtl + R, Ctrl + W to 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 features have you stumbled upon?

link|improve this question
show 1 more comment
feedback

100 Answers

1 2 3 4

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

link|improve this answer
4  
Dude... that's slick – Hugoware Sep 24 '08 at 19:37
9  
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
3  
This works in some other programs too, such as Word 2003. – Charles Anderson Dec 22 '08 at 9:07
3  
This works in MS Word and OO Writer as well. I've used it a lot. – Bård Aug 27 '09 at 7:17
2  
This (called "block select") also works with the keyboard- hold alt+shift then use the arrow keys. – arolson101 Oct 16 '09 at 16:42
show 8 more comments
feedback

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|improve this answer
1  
I know I'm late to the game, but that's a great feature I never knew about! – Jerry Aug 25 '09 at 19:37
7  
For extra points you can make a local variable asignment in the when hit button. { localVariable = 1.0f } or increase values by { staticVariable += 0.1f } – Charles Beattie May 10 '10 at 14:28
feedback

You can drag code to the ToolBox. Try it!

link|improve this answer
31  
Dear God...it's a whole new level of copy-and-paste. Copy-and-paste-paste-paste. I know a lot of programmers who I hope never find out that you can do this. – Kyralessa Mar 23 '10 at 20:34
show 6 more comments
feedback

Click an identifier (class name, variable, etc) then hit F12 for "Go To Definition". I'm always amazed how many people I watch code use the slower right-click -> "Go To Definition" method.

EDIT: Then you can use Ctrl+- to jump back to where you were.

link|improve this answer
8  
And don't forget Ctrl+Shift+- [control shift minus] to jump forward! – Kevin Pullin Jun 19 '09 at 3:34
5  
And Shift F12 for Find all references – Benjol Sep 2 '09 at 6:35
2  
You can also use ALT+left arrow to go back to where you were – arolson101 Oct 16 '09 at 16:43
1  
Might as well right-click-G if you're going the mouse route in the first place. – tsilb Jan 30 '10 at 16:27
show 5 more comments
feedback

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

link|improve this answer
show 4 more comments
feedback

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

But some of my favourites are Code Snippets, Ctrl + . to add a using <Namespace> or generate a 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|improve this answer
show 8 more comments
feedback
CTRL-K, CTRL-D

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

link|improve this answer
3  
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
8  
Ctrk-K, Ctrl-F for C++ – MSalters Sep 26 '08 at 11:01
6  
I use Ctrl-E, Ctrl-D – configurator Oct 10 '08 at 14:46
show 1 more comment
feedback

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|improve this answer
2  
Good thing! I searched for this for a long time, thanks! – zxcat Sep 15 '09 at 16:11
feedback

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|improve this answer
4  
It's called ">i<ncremental search". – Constantin Oct 7 '08 at 20:33
show 3 more comments
feedback

You can use the following codes in the watch window.

@err - display last error
@err,hr - display last error as an HRESULT
@exception - display current exception
link|improve this answer
show 2 more comments
feedback
  • Ctrl-K, Ctrl-C to comment a block of text with // at the start
  • Ctrl-K, Ctrl-U to uncomment a block of text with // at the start

Can't live without it! :)

link|improve this answer
3  
I always wished you could toggle comments? Why would you want to "double comment" something? Surely pressing it again should un-comment... – Dan Diplo Aug 5 '09 at 22:22
16  
Sometimes you want to comment the entire function, and some lines inside are already commented (i.e. they are proper comments). In such cases it's not obvious what to do if you have a toggle, so it's generally better to make the decision explicit. – Pavel Minaev Aug 13 '09 at 8:46
1  
Note that if you start at the beginning of text rather then beginning of line you will get the /* */ instead of //. This is by the way my most used feature – Default May 18 '10 at 18:39
show 7 more comments
feedback

Stopping the debugger from stepping into trivial functions.

When you’re stepping through code in the debugger, you can spend a lot of time stepping in and out of functions you’re not particularly interested in, with names such as GetID(), or std::vector<>(), to pick a C++ example. You can use the registry to make the debugger ignore these.

For Visual Studio 2005, you have to go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio \8.0\NativeDE\StepOver and add string values containing regular expressions for each function or set of functions you wish to exclude; e.g.

std\:\:vector.*\:\:.*
TextBox\:\:GetID

You can also override these for individual exceptions. For instance, suppose you did want to step into the vector class’s destructor:

std\:\:vector.*\:\:\~.*=StepInto

You can find details for other versions of Visual Studio at http://blogs.msdn.com/andypennell/archive/2004/02/06/69004.aspx

link|improve this answer
show 1 more comment
feedback

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|improve this answer
show 2 more comments
feedback

TAB key feature.

  1. If you know snippet key name, write and click double Tab. for example: Write

    foreach

and then click tab key twice to

foreach (object var in collection_to_loop)
{

}

2. If you write any event, write here

        Button btn = new Button();
        btn.Click +=         

and then click tab key twice to

private void Form1_Load(object sender, EventArgs e)
{
        Button btn = new Button();
        btn.Click += new EventHandler(btn_Click);     
}    
void btn_Click(object sender, EventArgs e)
{
        throw new Exception("The method or operation is not implemented.");
}

btn_Click function write automatically

  1. in XAML Editor, Write any event. for example:

MouseLeftButtonDown then click tab
MouseLeftButtonDown="" then click tab again MouseLeftButtonDown="Button_MouseLeftButtonDown" in the code section Button_MouseLeftButtonDown method created.

link|improve this answer
show 1 more comment
feedback

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|improve this answer
3  
If it's really piracy (which I agree with you about), then why would you even mention it? – Kyralessa Dec 3 '09 at 18:56
1  
Kyralessa, because some people probably don't care. However, with the Express editions being free I doubt there is an actual reason nowadays to use a pirated VS version. – Joey Sep 9 '11 at 9:33
feedback

T4 (Text Template Transformation Toolkit). T4 is a code generator built right into Visual Studio

link|improve this answer
show 1 more comment
feedback

Custom IntelliSense dropdown height, for example displaying 50 items instead of the default which is IMO ridiculously small (8).

(To do that, just resize the dropdown next time you see it, and Visual Studio will remember the size you selected next time it opens a dropdown.)

link|improve this answer
4  
You can't resize it anymore in VS2010, it bug me to no end. – manixrock Jun 11 '10 at 15:10
show 1 more comment
feedback

Discovered today:

Ctrl + .

Brings up the context menu for refactoring (then one that's accessible via the underlined last letter of a class/method/property you've just renamed - mouse over for menu or "Ctrl" + ".")

link|improve this answer
4  
Much better than trying to hunt the tiny mouse click target in this situation – Richard Ev Dec 2 '08 at 9:56
show 3 more comments
feedback

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|improve this answer
feedback

Line transpose, Shift-Alt-T
Swaps two line (current and next) and moves cursor to the next line. I'm lovin it. I've even written a macro which changed again position by one line, executed line transpose and changed line position again so it all looking like I swapping current line with previous (Reverse line transpose).

Word transpose, Shift-Ctrl-T

link|improve this answer
4  
Lettre transpose = Ctrl-T – Benjol Nov 19 '09 at 15:25
1  
Could do with it here as it turns out :) – Benjol Nov 19 '09 at 15:34
show 3 more comments
feedback

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

link|improve this answer
feedback

Document Outline in the FormsDesigner (CTRL + ALT + T)

Fast control renaming, ordering and more!

link|improve this answer
show 1 more comment
feedback

To auto-sync current file with Solution Explorer. So don't have to look where the file lives in the project structure

Tools -> Options -> Projects and Solutions -> "Track Active Item in Solution Explorer"

Edit: If this gets too annoying for you then you can use Dan Vanderboom's macro to invoke this feature on demand through a keystroke.

(Note: Taken from the comment below by Jerry).

link|improve this answer
3  
this gets annoying after a while. i wish there were a keyboard shortcut to do this on demand. – qntmfred Jul 28 '09 at 14:14
2  
Here's a post on how to track on demand. dvanderboom.wordpress.com/2008/03/21/… – Jerry Aug 25 '09 at 19:44
show 3 more comments
feedback

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|improve this answer
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
feedback

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

link|improve this answer
show 3 more comments
feedback

I don't use it often, but I do love:

ctrl-alt + mouse select

To select in a rectangular block, to 'block' boundaries.

As noted in comments,

alt + mouse select

Does just a plain rectangular block.

link|improve this answer
4  
A downvote is amusing, given that this is a valid action in VS :) Good luck to you though, mysterious hater. – Noon Silk Aug 31 '09 at 4:49
2  
Maybe it's a bit early, but reading this made me want to try it on Firefox. Turns out, ctrl-alt-shift allows you to use the mouse to drag the entire document across the screen, similar to how a PDF document works. – WebDevHobo Aug 31 '09 at 5:42
show 5 more comments
feedback

Here's something I learned (for C#):

You can move the cursor to the opening curly brace from the closing curly brace by pressing Control + ].

I learned this on an SO topic that's a dupe of this one:

“Hidden Secrets” of the Visual Studio .NET debugger?

link|improve this answer
1  
"Ctrl + [" didn't work for me... "Ctrl + ]" did, though! – Robert Sep 10 '09 at 15:09
show 2 more comments
feedback

CTRL + Shift + U -> Uppercase highlighted section. CTRL + U -> Lowercase the highlighted section Great for getting my SQL Statements looking just right when putting them into string queries.

Also useful for code you've found online where EVERYTHING IS IN CAPS.

link|improve this answer
2  
Too bad they don't have a CamelCase CTRL+Shift option... :) That's probably my #1 refactor I do when I take over a project... Larry – LarryF Dec 15 '08 at 23:31
feedback

Middle Mouse Button Click on the editor tab closes the tab.

link|improve this answer
1  
I use this all the time when I'm coding because I'm looking up code and then closing it (the "X" for closing is rather far). – Kevin Driedger Nov 12 '09 at 15:18
show 1 more comment
feedback

To display any chunk of data as an n-byte "array", use the following syntax in Visual Studio's QuickWatch window:

variable, n

For example, to view a variable named foo as a 256-byte array, enter the following expression in the QuickWatch window:

foo, 256

This is particularly useful when viewing strings that aren't null-terminated or data that's only accessible via a pointer. You can use Visual Studio's Memory window to achieve a similar result, but using the QuickWatch window is often more convenient for a quick check.

link|improve this answer
feedback
1 2 3 4

Your Answer

 
or
required, but never shown

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