vote up 65 vote down star
118

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

prev 1 2 3
vote up 1 vote down

View, Other Windows, Object Test Bench

The object test bench can be used to execute code at design-time.

You can right-click on a type in Class View, click Create Instance, and select a constructor. You can then supply values for its parameters, if any, and the instance will show up in the Object Test Bench.

You can also call static methods by right-clicking a type and clicking Invoke Static Method.

In the Object Test Bench, you can right-click on an object to call methods, and you can hover over it and see its structure (like you can when debugging). You can also assign to and interact with these variables in the Immediate window, also at design time.

This feature can be useful when writing a library. Please note that to use this, your solution must be compile first.

link|flag
vote up 0 vote down

I wanted to talk about comment (ctrl+k, ctrl+c) and uncomment (ctrl+k, ctrl+u) shortcuts but a Bratt (:p) already mentioned them.

How about the ctrl+k, ctrl+d shortcut, very convenient to format markup (asp.net, html) and javascript code !

Cheers

link|flag
vote up 0 vote down

I don't know how unknown most people consider them to be, but I don't think that a lot of people use snippets.

I discovered them a while back and then found that they were customizable by editing the xml in the Visual Studio Program Files directory. They make it super easy to add a lot of code quickly.

Also, to save time when using snippets make sure you hit tab twice and not try to do everything through the right click menu.

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

One that I only just discovered. When dealing with COM it's possible to lookup a brief message from the cryptic hexadecimal error number using a tool called errlook.exe.

The useful tool is located in your VS\Common7\Tools directory.

link|flag
vote up 2 vote down

.NET debugger allows you to give objects identifiers, and to refer them via those identifiers later during the session. To do so, you right-click on the variable (or expression) referencing the object in Autos/Locals/Watch window, or in the tooltip, and select "Create Object ID". IDs are sequential integer numbers, starting from 1, and suffixed by "#" - e.g 1# will be the first ID you create.

After the ID is created, if the object is associated with a given ID, it is displayed in parentheses.

You can use 1# to reference the object by ID anywhere you can normally use expressions - in Watch window, in condition of a conditional breakpoint, and so on. It's most handy when you want to set a breakpoint on a method of some particular object only - if you can first track the object creation, or some other place where this particular object is referenced, you just create the ID for it, and then set a new breakpoint with condition such as this==1#.

link|flag
vote up 3 vote down

Dynamic XSLT Intellisense

A very little known fact is that Visual Studio 2008 does support real XSLT intellisense - not a static XSLT schema-based one, but real dynamic intellisense enabling autocompletion of template names, modes, parameter/variable names, attribute set names, namespace prefixes etc.

For all versions of VS I like

Ctrl + Shift + V

for copying data in clipboard cycle.

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

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|flag
show 2 more comments
vote up 6 vote down

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|flag
4  
A downvote is amusing, given that this is a valid action in VS :) Good luck to you though, mysterious hater. – silky Aug 31 at 4:49
1  
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 at 5:42
show 4 more comments
vote up 2 vote down

I don't know how 'hidden' this is, but some newew people may not know about coniditonal breakpoints.

Set a breakpoint, then right click it, and choose Condition, then enter an expression like:

(b == 0)

And it will only fire when that is true. Very useful when trying to debug a certain stage of a loop.

link|flag
3  
I think the general approach in these threads is to put one answer per comment, so people can rank them individually. I'm not getting any more points today via upvotes anyway, so it doesn't bother me either way :) – silky Aug 31 at 4:59
show 1 more comment
vote up 1 vote down

There is this blog on MSDN thats got some nice tips and tricks

http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx

link|flag
vote up 1 vote down

The existence of the Resharper add-in. It makes working with Visual Stupidio less of a pain :)

It's not really a hidden feature, but worth mention nonetheless as it comes with tons of these tricks and hotkeys.

link|flag
vote up 0 vote down

Vertical selection with Ctrl-Left Click is pretty useful sometimes...

link|flag
vote up 0 vote down

Shift + Delete to cut whatever line the cursor is on.

I use this all the time to delete whole lines of code.

link|flag
vote up 1 vote down

Mouse Left Click resets your cursor to the position your pointer is currently hovering. Very useful for navigating through Visual Studio.

link|flag
vote up 1 vote down
  • Vertical split of the window using "New Window" and "New Vertical Tab Group" combination.

There is only horizontal split in VS by default, but trick with window duplication allows to use vertical split too.

  • Vertical selection is good (it accessible with keyboard too: Alt+Shift+[Ctrl]+Arrows). But sometimes I need to use Vertical Copy/Cut and Paste. VS is smart enough to handle this correctly.

  • There are also very useful features: Go Next/Prev Scope (Alt+Down/Up), Go to Implementation (Alt+G), but they are a part of the Visual Assist X plug-in.

link|flag
vote up 1 vote down

In the watch window, you can view the current exception even if you have no variable to hold it by adding a watch on $exception

link|flag
vote up 0 vote down

I'm surprised no one has mentioned this yet. I find the ability record and play back a series of actions very, very helpful sometimes. Like if I'm applying some repetitive action to a few lines in a text file.

For example

Ctrl+Shift+R (start recording macro)

perform a series of keystrokes

Ctrl+Shift+R (stop recording macro)

later....

Ctrl+Shift+P (play back keystrokes)

This approach is ideal for a short, one time manipulations. If it's something more involved or needed more than once, I'll write a script.

link|flag
vote up 0 vote down

I just wanted to copy that code without the comments.

So, the trick is to simply press the Alt button, and then highlight the rectangle you like.(e. g. below).

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        //if (e.CommandName == "sel")
        //{
        //    lblCat.Text = e.CommandArgument.ToString();
        //}
    }

In the above code if I want to select :

e.CommandName == "sel"

lblCat.Text = e.Comman

Then I press ALt key and select the rectangle and no need to uncomment the lines.

Check this out.

link|flag
vote up 0 vote down

Request: Anyone know how to shorten paths in the find window to be rooted at my solution folder instead of the drive? They're just too long.

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

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

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

After having read through all these marvelous (and some repetitive) posts, I have some to add that I don't think I saw:

CTRL+Z = undo

CTRL+Y = redo

;-)

Also, don't forget to modify the keyboard shortcuts! Tools > Options > Environment > Keyboard

LOTS of goodies! I have F9 == stepinto, f10 == step over and f11 == step out. VERY useful.

Another not cited that I use somewhat often (although most people probably have a toolbar with this button): f6 == Build Solution.

Enjoy!

link|flag
show 1 more comment
prev 1 2 3

Your Answer

Get an OpenID
or

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