vote up 37 vote down
star
61

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
add / show 2 more comments

40 Answers

1 2 next
vote up 28 vote down

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

link|flag
add / show 7 more comments
vote up 25 vote down

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

But some of my favs are Code Snippets, Ctrl + . to add a using or generate 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|flag
add / show 3 more comments
vote up 19 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
add comment
vote up 12 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
add / show 1 more comment
vote up 10 vote down

There has been a question about this earlier:

What are the best unknown features of Visual Studio .NET 2005?

link|flag
add comment
vote up 9 vote down
CTRL-K, CTRL-D

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

link|flag
1 
Ctrk-K, Ctrl-F for C++ – MSalters Sep 26 at 11:01
1 
I use Ctrl-E, Ctrl-D – configurator Oct 10 at 14:46
add / show 1 more comment
vote up 9 vote down

firefox like searching: 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|flag
add / show 1 more comment
vote up 8 vote down

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

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

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

link|flag
add comment
vote up 6 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
add / show 2 more comments
vote up 5 vote down

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|flag
add comment
vote up 5 vote down

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

link|flag
add comment
vote up 4 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
add comment
vote up 3 vote down

Drag-drop text selections to the Watch window while in the debugger.

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

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

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

I think the ability to right click on a Stored Procedure in Server Explorer and debug..

link|flag
add comment
vote up 1 vote down

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

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

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

link|flag
add comment
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
add comment
1 2 next

Your Answer

Get an OpenID
or

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