vote up 64 vote down star
117

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

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 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 1 vote down

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

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 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 0 vote down

  • Print the shortcuts from the Microsoft page and put them next to you. Try to learn a new one every day. You'll find all shortcuts already mentioned here + lots more. Some very useful contain formatting a code block, commenting, navigate between pages,...
  • Get Resharper, it's a plugin which whill greatly increase your efficiency. If you use Resharper, you can find a list with shortcuts.
  • link|flag
    vote up 0 vote down

    I updated my code flipper, I posted earlier. I added support for ASP Controls.

    Larry

    link|flag
    vote up 0 vote down

    CTRL-G for jumping to a specific line number. Saves a few seconds when you've got a line number in a large code file.

    link|flag
    vote up 0 vote down

    I see that lot of us are posting shortcuts. I have printed this poster, it's very helpful to learn those shortcuts - nowadays I look very rarely at the poster 'cause I've learned most of them :)

    Link for VS posters:

    http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=c15d210d-a926-46a8-a586-31f8a2e576fe

    My favourites are Refactoring ones (CTRL-R + Something)

    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 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 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

    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
    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
    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.