vote up 64 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

vote up 4 vote down

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

Fast control renaming, ordering and more!

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

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

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

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

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

Larry

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 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 8 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 13 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 12 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 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 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 3 vote down

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

    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 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 16 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 27 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 4 more comments
    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 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 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
    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

    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 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 at 18:18
    vote up 37 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 3 vote down

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

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

    Your Answer

    Get an OpenID
    or

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