vote up 62 vote down star
110

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

80 Answers

vote up 2 vote down

Copy-paste from a Watch window of an object's expanded properties in the debugger into Excel will perserve the tabular format and persist the data after the debug session is over.

link|flag
vote up 8 vote down

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

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

EDIT: Then you can use Ctrl+- [control minus] to jump back to where you were.

link|flag
1  
And don't forget Ctrl+Shift+- [control shift minus] to jump forward! – Kevin Pullin Jun 19 at 3:34
1  
And Shift F12 for Find all references – Benjol Sep 2 at 6:35
show 2 more comments
vote up 15 vote down
  • 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|flag
1  
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 at 22:22
5  
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 at 8:46
show 2 more comments
vote up 1 vote down
  • 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|flag
vote up 3 vote down

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|flag
show 1 more comment
vote up 3 vote down

There is an article about this. It seems to be a lengthy collection.

link|flag
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 6 vote down

    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"

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

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

    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|flag
    show 1 more comment
    vote up 7 vote down

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

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

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

    variable, n
    

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

    foo, 256
    

    This is particularly useful for viewing non-null terminated strings or data that is only accessible via a pointer. You can use the memory window to achieve a similar result, but using the watch window is often more convenient for a quick check.

    link|flag
    vote up 2 vote down

    Here is the Macro source for my aspx/aspx.cs flipper. It works in 2005, but it may have issues in 08.. I'm not sure... This was taken from my other cpp/h flipper, so there might be some clean up needed to make it the best it could be. I'm not paid to write Macros, so I have to blast though them as quickly as possible when I need one.

        Sub OpenASPOrCS()
        'DESCRIPTION: Open .aspx file if in .cs file, open .cs file if in .aspx file
        On Error Resume Next
    
        ' Get current doc path
        Dim FullName
        FullName = LCase(ActiveDocument.FullName)
        If FullName = "" Then
            MsgBox("Error, not a .cs or asp file!")
            Exit Sub
        End If
    
        ' Get current doc name
        Dim DocName
        DocName = ActiveDocument.Name
    
        Dim IsCSFile
        IsCSFile = False
        Dim fn
        Dim dn
        If (Right(FullName, 3) = ".cs") Then
            fn = Left(FullName, Len(FullName) - 3)
            dn = Left(DocName, Len(DocName) - 3)
            IsCSFile = True
        ElseIf ((Right(FullName, 5) = ".aspx") Or (Right(FullName, 5) = ".ascx")) Then
            fn = FullName + ".cs"
            dn = DocName + ".cs"
        Else
            MsgBox("Error, not a .cs, or an asp file!")
            Exit Sub
        End If
    
        Dim doc As EnvDTE.Documents
    
        DTE.ItemOperations.OpenFile(fn)
        doc.DTE.ItemOperations.OpenFile(fn)
    
        If Err.Number = 0 Then
            Exit Sub
        End If
    
        ' First check to see if the file is already open and activate it
        For Each doc In DTE.Documents()
            If doc.Name = dn Then
                doc.Active = True
                Exit Sub
            End If
        Next
    
    End Sub
    
    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 1 vote down

    The Open button in the File Open dialog has a little down arrrow next to it. Click that and you get the "Open With" option which includes the Binary Editor. As a systems-type guy, I find it quite valuable, but most of my colleagues hadn't known about it until I showed them.

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

    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

    link|flag
    vote up 1 vote down

    Ctrl+L deletes the current selected line. This is an awesome time saver (if used responsibly of course!!!)

    link|flag
    2  
    Unfortunately it cuts the current line, pwning your clipboard. I really wish there was a command that just deleted the current line... – teedyay Mar 5 at 10:58
    1  
    Shift + Delete works for me... – kevint Jul 16 at 8:21
    show 2 more comments
    vote up 2 vote down

    Ctrl-M + Ctrl-L Toggle Collapse All - Expand All

    link|flag
    vote up 1 vote down

    Re: Stopping the debugger from stepping into trivial functions.

    In C#, you can also add an attribute [DebuggerStepThrough] (using System.Diagnostics) to a method. This causes the debugger to, ironically, not step through the method.

    link|flag
    vote up 3 vote down

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

    Fast control renaming, ordering and more!

    link|flag
    vote up 9 vote down

    Custom intellisense dropdown height,ie 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 VS will remember the size you selected next time it opens a dropdown

    link|flag
    vote up 2 vote down

    Ctrl-T swaps the last two letters. For example, "swithc" -> "switch".

    link|flag
    3  
    Wow. so much useless in just one feature :) thanks :) – shoosh Apr 25 at 9:47
    show 2 more comments
    vote up 1 vote down

    Reference tag of Visual Studio 2008 for javascript intellisense is a brand new hidden feature. Especially JQuery intellisense is a devastating !

    link|flag
    vote up 5 vote down

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

    Ctrl+Shift+L deletes the current line (without cutting it to the clipboard)

    link|flag
    vote up 2 vote down

    You can drag down the little gray box above the vertical scrollbar to split the window into two views of the same file, which can be scrolled independently - great if you're comparing two parts of the same file.

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

    View, Code Definition Window.

    The Code Definition Window shows the definition of the currently selected identifier (If it's in your solution, it'll show your sourced; otherwise, it'll extract metadata, like right-click, Go To Definition)

    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

    Your Answer

    Get an OpenID
    or

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