vote up 60 vote down star
98

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

77 Answers

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 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. The memory window can be used to achieve a similar result, but using the watch window is often more convenient for a quick check.

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

The most important feature I can't live w/o is VS.Net 2008. :P

link|flag
vote up 2 vote down

CTRL-D then type ">of " then file name. If the standard toolbar is up crtl-d put you in find combobox and there is now a dropdown with files in your solution that match the start of the filename you typed. Pick one and it will open it. This alternative to the open filedialog is awesome for big solutions with lots of directories.

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

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

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

The Debugger :-) Beats Notepad by miles.

link|flag
1  
VS Debugger is Notepad when compared to windbg :) – Constantin Oct 7 '08 at 20:59
show 1 more comment
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 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

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

Your Answer

Get an OpenID
or

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