Visual Studio

Welcome to the Visual Studio UserVoice site. Let us know what you would like to see in future versions of the Visual Studio suite of products. This site is for suggestions and ideas. If you need to file a bug, visit the Visual Studio Connect site: http://connect.microsoft.com/visualstudio.

ASP.NET Runtime/Web Tooling suggestions have moved! All your ideas, including your votes, have been transferred and are searchable in the ASP.Net Uservoice forum. Please submit any new ASP.NET Runtime/Web Tooling suggestions, or vote on existing suggestions by going to http://aspnet.uservoice.com.

We look forward to hearing from you!

Thanks – Deon Herbert
Visual Studio Team

I suggest you ...

You've used all your votes and won't be able to post a new idea, but you can still search and comment on existing ideas.

There are two ways to get more votes:

  • When an admin closes an idea you've voted on, you'll get your votes back from that idea.
  • You can remove your votes from an open idea you support.
  • To see ideas you have already voted on, select the "My feedback" filter and select "My open ideas".
(thinking…)

Enter your idea and we'll search to see if someone has already suggested it.

If a similar idea already exists, you can vote and comment on it.

If it doesn't exist, you can post your idea so others can vote on it.

Enter your idea and we'll search to see if someone has already suggested it.

  • Hot ideas
  • Top ideas
  • New ideas
  1. 3 votes
    Vote
    Sign in
    Check!
    (thinking…)
    Reset
    or sign in with
    • facebook
    • google
      Password icon
      I agree to the terms of service
      Signed in as (Sign out)
      You have left! (?) (thinking…)
      0 comments  ·  Flag idea as inappropriate…  ·  Admin →
    • finally add something to make a code editor more useful - like in NetBeans or Eclipse - where Alt+Enter actually helps you.

      Add the possibility to create the code without so much mouse clicking (why do I have to hover over the error to see what it is about?). I need a shortcut that allows me to solve the problem. Ctrl + . only seems to work from time to time. Why is intellisense not no intelli after all? if I am trying to assign something to a string reference - why aren't the methods that are returning the string on the top of the list.

      3 votes
      Vote
      Sign in
      Check!
      (thinking…)
      Reset
      or sign in with
      • facebook
      • google
        Password icon
        I agree to the terms of service
        Signed in as (Sign out)
        You have left! (?) (thinking…)
        0 comments  ·  Editor  ·  Flag idea as inappropriate…  ·  Admin →
      • VS2010 : go back to old find dialog (like in VS2010) or allow disabling the quickfind

        Hi all,

        The new "Quickfind" - panel of VS2012 is annoying. It does not respond as expected and could not be positioned as needed.
        It slows down all work.

        So I would suggest to go generally back to the old "find dialog" or allow the users to disable the new "quickfind" toolwindow.

        Best regards,
        dp.

        3 votes
        Vote
        Sign in
        Check!
        (thinking…)
        Reset
        or sign in with
        • facebook
        • google
          Password icon
          I agree to the terms of service
          Signed in as (Sign out)
          You have left! (?) (thinking…)
          1 comment  ·  User Interface  ·  Flag idea as inappropriate…  ·  Admin →
        • Utilize CSX Scripts

          Support usage of CSX scripts for pre/post build events, as well as build scripts. Now that Roslyn supports the creation of these C# scripts, they should be used everywhere they can be to replace the myriad of languages used for different things in the development process.

          3 votes
          Vote
          Sign in
          Check!
          (thinking…)
          Reset
          or sign in with
          • facebook
          • google
            Password icon
            I agree to the terms of service
            Signed in as (Sign out)
            You have left! (?) (thinking…)
            0 comments  ·  Languages - C#  ·  Flag idea as inappropriate…  ·  Admin →
          • Add full support for an implementation of quad precision IEEE 754-2008 data types

            Add additional data types that implement quad precision IEEE 754-2008 numbers

            3 votes
            Vote
            Sign in
            Check!
            (thinking…)
            Reset
            or sign in with
            • facebook
            • google
              Password icon
              I agree to the terms of service
              Signed in as (Sign out)
              You have left! (?) (thinking…)
              0 comments  ·  .NET  ·  Flag idea as inappropriate…  ·  Admin →
            • Add "Name" property to Regex Group object

              The Group object from the Regex library needs a Name property. I am in a situation where I have regexes that are not known at compile time being run, and I need to create a Name-Value pair from the resulting matches. This is very difficult without a Name property.

              3 votes
              Vote
              Sign in
              Check!
              (thinking…)
              Reset
              or sign in with
              • facebook
              • google
                Password icon
                I agree to the terms of service
                Signed in as (Sign out)
                You have left! (?) (thinking…)
                0 comments  ·  .NET  ·  Flag idea as inappropriate…  ·  Admin →
              • Create a notification/alert for when the build is fixed

                I get an alert when the build breaks, but I never really know when it is fixed. (Unless I go check it manually)

                It would be really nice to get an email when the build is fixed (after a broken build).

                3 votes
                Vote
                Sign in
                Check!
                (thinking…)
                Reset
                or sign in with
                • facebook
                • google
                  Password icon
                  I agree to the terms of service
                  Signed in as (Sign out)
                  You have left! (?) (thinking…)
                  0 comments  ·  Team Foundation Server  ·  Flag idea as inappropriate…  ·  Admin →
                • In MTM, Warn if a selected build has a retention policy that delets test results

                  As a tester I want to be informed/warned if I connect a build with a retention policy that deletes test data so I can take appropriate action.

                  As a tester I want to have the possibility to set retain indefinitely on a build from inside MTM So I can secure that my test data doesn’t get deleted

                  I suggest moving the Build Information back to the left, and place an warning if there is a build policy deleting Test Results. Maybe something like this

                  Or even better – save some vertical space and do something like this

                  3 votes
                  Vote
                  Sign in
                  Check!
                  (thinking…)
                  Reset
                  or sign in with
                  • facebook
                  • google
                    Password icon
                    I agree to the terms of service
                    Signed in as (Sign out)
                    You have left! (?) (thinking…)
                  • Methods into enum

                    Extend enums with a methods, primary with conversion.
                    Example of definition:

                    public enum DoorState
                    {
                    Open,
                    Closed,
                    Semi-closed;

                    public static implicit operator DoorState(string param)
                    {
                    return (DoorState) Enum.Parse(typeof(DoorState), param);
                    }
                    }

                    Examples of use:

                    door1.State = "Closed"; // DoorState.Closed
                    dish.Status = "ReadyForEating"; //DishState.Ready
                    usercontrol1.Visilibity = false; //Visilibity.Hidden
                    service.Status = "Stopped" //ServiceStatus.StopWithHandlers

                    3 votes
                    Vote
                    Sign in
                    Check!
                    (thinking…)
                    Reset
                    or sign in with
                    • facebook
                    • google
                      Password icon
                      I agree to the terms of service
                      Signed in as (Sign out)
                      You have left! (?) (thinking…)
                      0 comments  ·  Languages - C#  ·  Flag idea as inappropriate…  ·  Admin →
                    • add grid to print feature in your database application.

                      i think it's time to add grid to print in your in your ide for database application. i am the programer in oranus novin co. we created a roubust and powerfull grid to print . with it your customer can easily create and customize many reports in a couple of minute.
                      and your programers can add this great functionality with adding just a couple lines of code.
                      you can gift your customers this great tool and save thousands of hours and days of programers all over the world
                      thanks

                      3 votes
                      Vote
                      Sign in
                      Check!
                      (thinking…)
                      Reset
                      or sign in with
                      • facebook
                      • google
                        Password icon
                        I agree to the terms of service
                        Signed in as (Sign out)
                        You have left! (?) (thinking…)
                        1 comment  ·  .NET  ·  Flag idea as inappropriate…  ·  Admin →
                      • VSTS Load Test : Get page response times for each browser type

                        In VSTS Load test results, Currently there is no such feature to see page response times for each browser type Separately. As we know, Server process the request based on user agent that we're simulating in the request (for example, different responses will be returned from gmail server for mobile and web requests).

                        There should be a feature to see response times for different browser types.

                        3 votes
                        Vote
                        Sign in
                        Check!
                        (thinking…)
                        Reset
                        or sign in with
                        • facebook
                        • google
                          Password icon
                          I agree to the terms of service
                          Signed in as (Sign out)
                          You have left! (?) (thinking…)
                          0 comments  ·  Visual Studio Ultimate  ·  Flag idea as inappropriate…  ·  Admin →
                        • 3 votes
                          Vote
                          Sign in
                          Check!
                          (thinking…)
                          Reset
                          or sign in with
                          • facebook
                          • google
                            Password icon
                            I agree to the terms of service
                            Signed in as (Sign out)
                            You have left! (?) (thinking…)
                            0 comments  ·  Flag idea as inappropriate…  ·  Admin →
                          • Bring back the "Associate test to test case" context menu item

                            Bring back the "Associate test to test case" context menu item in the Test View of VS2010.

                            3 votes
                            Vote
                            Sign in
                            Check!
                            (thinking…)
                            Reset
                            or sign in with
                            • facebook
                            • google
                              Password icon
                              I agree to the terms of service
                              Signed in as (Sign out)
                              You have left! (?) (thinking…)
                            • Help Viewer 2.0 is missing a category filter

                              Help Viewer 2.0 is missing a category filter (e.g. C#, C++, Windows SDK, etc.). Search and index results are cluttered by useless results the user is not looking for.

                              3 votes
                              Vote
                              Sign in
                              Check!
                              (thinking…)
                              Reset
                              or sign in with
                              • facebook
                              • google
                                Password icon
                                I agree to the terms of service
                                Signed in as (Sign out)
                                You have left! (?) (thinking…)
                                0 comments  ·  Help  ·  Flag idea as inappropriate…  ·  Admin →
                              • Self-Extending Integration

                                Hi,
                                I am a good programmer of VB.Net I found it Very Easy to use. But the thing i want is that programmer should be able to extend language by building new keywords. As In some class If we use IDisposable Then we can use Using statement for that class. So I want that user make new classes and make new keywords for them. Although It is easy to say this but i think its programming will be so hard but VB.Net will be language extending itself. There should be a class for implement or inheriting Keyword and build rules…

                                3 votes
                                Vote
                                Sign in
                                Check!
                                (thinking…)
                                Reset
                                or sign in with
                                • facebook
                                • google
                                  Password icon
                                  I agree to the terms of service
                                  Signed in as (Sign out)
                                  You have left! (?) (thinking…)
                                  0 comments  ·  Languages - Visual Basic  ·  Flag idea as inappropriate…  ·  Admin →
                                • enhance the query request model in lightswitch to reduce the number of server requests

                                  I commented on a earlier suggestion but want to get more feedback on this, as it seems to be a fundemental issue.

                                  other suggestion
                                  http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/3092582-improve-the-request-model-in-lightswitch

                                  my comment

                                  Anonymous commented · December 12, 2012 3:24 p.m. · Flag as inappropriate · Delete

                                  I have to up this, I was going to add a new suggestion but hopefully this gets kicked up the stack.
                                  I think the user of the post is on the right track. I understand the intention of the architecture of LS and why they might have gone done the route of responsive binding and the perils of locking…

                                  3 votes
                                  Vote
                                  Sign in
                                  Check!
                                  (thinking…)
                                  Reset
                                  or sign in with
                                  • facebook
                                  • google
                                    Password icon
                                    I agree to the terms of service
                                    Signed in as (Sign out)
                                    You have left! (?) (thinking…)
                                    0 comments  ·  LightSwitch  ·  Flag idea as inappropriate…  ·  Admin →
                                  • Expand a file to it's class' members, and not the list of classes in the file

                                    Far the most of the time, each file (in c# at least) only contains a single file. Therefore I expect the expended file to show a list of members, and not a list of classes in the file.

                                    In case the file contained several classes, the extra step with the list of classes could be shown instead.

                                    3 votes
                                    Vote
                                    Sign in
                                    Check!
                                    (thinking…)
                                    Reset
                                    or sign in with
                                    • facebook
                                    • google
                                      Password icon
                                      I agree to the terms of service
                                      Signed in as (Sign out)
                                      You have left! (?) (thinking…)
                                      0 comments  ·  IDE  ·  Flag idea as inappropriate…  ·  Admin →
                                    • Right Click on Screen Code 'View Designer'

                                      context menu option to view designer of the current Screen while viewing Screen Code.

                                      3 votes
                                      Vote
                                      Sign in
                                      Check!
                                      (thinking…)
                                      Reset
                                      or sign in with
                                      • facebook
                                      • google
                                        Password icon
                                        I agree to the terms of service
                                        Signed in as (Sign out)
                                        You have left! (?) (thinking…)
                                        0 comments  ·  LightSwitch  ·  Flag idea as inappropriate…  ·  Admin →
                                      • History Tab for TFS

                                        Add history tab in the TFS (Soultion Control Explorer) which can provide first hand view of the history of the files under the selected folder. Also the view should have the option to see the results by Changeset or simply the files. All the views currently shows the changesets and need to click on each of the changeset to see the files underneath. It will make life more easier if we can the list of files which changeset as a column and one can sort by changeset if need be

                                        3 votes
                                        Vote
                                        Sign in
                                        Check!
                                        (thinking…)
                                        Reset
                                        or sign in with
                                        • facebook
                                        • google
                                          Password icon
                                          I agree to the terms of service
                                          Signed in as (Sign out)
                                          You have left! (?) (thinking…)
                                          0 comments  ·  Team Foundation Server  ·  Flag idea as inappropriate…  ·  Admin →
                                        • Provide option to only open tabs above status bar when clicked

                                          If possible, please provide an option to only open the tabs (e.g. "Error List", "Output", "Pending Changes", etc.) above the status bar when clicked instead of when hovering over. Often times, when I move the mouse to the bottom of a file or towards the task bar, the window the tab item corresponds to opens up. This is a distraction and annoyance IMHO.

                                          3 votes
                                          Vote
                                          Sign in
                                          Check!
                                          (thinking…)
                                          Reset
                                          or sign in with
                                          • facebook
                                          • google
                                            Password icon
                                            I agree to the terms of service
                                            Signed in as (Sign out)
                                            You have left! (?) (thinking…)
                                            0 comments  ·  IDE  ·  Flag idea as inappropriate…  ·  Admin →
                                          • Don't see your idea?

                                          Feedback and Knowledge Base