vote up 52 vote down star
33

I love Visual Studio about 90% of the time, but that last 10% it is such a PITA it makes me want to launch my monitor off the desk.

My latest annoyances:

  • It won't remember my toolbar settings. I don't want any toolbars, ever. Quit popping open the CSS editor or XML editor or text editor everytime I open a file.
  • Doesn't remember which regions I had expanded or collapsed and as far as I know there is no way to tell it to always open files with the regions expanded.
  • When editing CSS or HTML the damn error list wants to pop up each time I start a tag and haven't finished it yet. First of all, don't pop up at all. And if you're going to ... give me a couple seconds to finish what I'm doing.

The best part ... ReSharper :)

EDIT [Jay Bazuzi]: It seems like this discussion is only productive if it's focused on the latest released version. Set the title to VS2008.

flag
1  
* Toolbar settings is saved with last closed instance of visual studio. – TcKs Nov 15 '08 at 22:28
show 6 more comments

106 Answers

vote up 3 vote down

When designing windows forms with lots of controls I'll first design the form with all the controls and then go back and rename all the controls prior to wiring anything up. I'm very careful to click one time with my mouse on each control I am renaming, however VS 2008 (and previous versions) often interprets a double click -- which throws me into the code behind thinking I want to wire up an event handler. This is highly annoying and wastes a tremendous amount of my time clicking to get out of the code behind. The problem becomes exponentially worse with forms containing many controls. Why in the heck isn't there an option to disable auto-wireup (at least temporarily)? I can't be the first windows developer to encounter this problem.

link|flag
show 2 more comments
vote up 0 vote down

Two of my biggest gripes:

  • 6.0 had a setting that let you see the shortcut keys on the tooltips (very useful in trying to learn a new keyboard shortcut for often used features); 2005/2008 doesn't. (Thanks to SLax for the comment on how to turn on that feature. This isn't a problem now.)
  • 6.0 let you put toolbars anywhere, even in between the workspace window and the code window (next to the separator bar); 2005/2008 doesn't.

On thing that I really like:

  • The class view window -- much more useful in 2005/2008 than it was in 6.0.

Edit Thanks to SLaks's comment, the first gripe is no longer an issue. However, this is:

  • The Class Wizard in 6.0 let you easily add handlers for pretty much any message you wanted on the dialogue as well as its controls. I find that the Class Wizard in 2005/2008 is much more restrictive and, therefor, much less flexible. It doesn't even let you add event handlers for the dialogue itself for God's sake! (Being lazy, I found it very useful to have the wizard put the stubs in for OnInitDialog(), etc. for me.)
link|flag
show 1 more comment
vote up 2 vote down

There was a really nice FTP interface for deploying web site projects in 2005. Now they replaced it with something much worse.

Edit: my new biggest annoyances are:

  1. Sometimes windows like the solution explorer forget that they are supposed to autohide, and you have to tack and untack them again to make them go away.

  2. One of the windows from the bottom, such as the Output or Error List pops up for no good reason, such as when I save a file, although thankfully it usually realizes it should hide and goes away after a second.

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

I don't know what causes it, but on occasions as I'm typing in an .aspx page the 'Error List' tab keeps jumping up and down like a f@cking jack russell terrier.

Otherwise I like it.

link|flag
vote up 134 vote down

Why does it take forever to launch the Add Reference dialog for a project?

link|flag
2  
A cache with the references that is updated when requested would be a solution I guess. And a separate thread for the look up could be another. – Erik Hellström May 8 at 15:39
25  
Why the heck can't it default to the "Projects" tab? – Paul Suart May 8 at 15:39
1  
thedorko, I've requested that: connect.microsoft.com/VisualStudio/feedback/… They say they're not going to fix it in 2008, but if enough people complain, maybe they'll change their minds? – Kyralessa May 8 at 17:27
3  
tomlog, the issue isn't how often you have to do it; the issue is the way it destroys your flow every time you do it while you wait for the box to come up. – Kyralessa Aug 7 at 16:59
show 12 more comments
vote up 0 vote down

Simpler addon development would be really nice.

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

When you add a reference, the dialog box seems to take forever to load - like minutes - because it's loading up every bloody .net, com, whatever library it can think of.

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

I hate that VS2008 as well as the versions before do not get it managed to let the actual interface be usable, since it permanently locks up.

While building a project, it locks up, background compiling for intellisense works, but while actual compiling the code, it locks up the whole frontend.

Thats the most annoying thing with VS to me.

link|flag
show 2 more comments
vote up 0 vote down

First of all... I love Visual Studio. I worked with it for years and it keeps getting better for every version.

I hate it when VS 2008 stops giving IntelliSense and when, for some unknown reason, it sets my keyboard settings to a different language, so 'special' keys like - and = become things like °, only in Visual Studio so a restart of it fixes the problem.

Another thing I think needs improvement is opening XAML files. I've changed the settings so it doesn't open in split mode but only shows me the actual XAML. Very often Visual Studio shuts down immediately. When restarting Visual Studio after that and opening in my project, that file is still open so Visual Studio shuts down again. After that Visual Studio doesn't load any files when opening the project. Very annoying.

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

When I moved from VS 2003 to VS 2005, it became much more difficult to chase down object properties in the debugger QuickWatch window. How should I know if it's "base" or "Non-Public" or "Static", and, more to the point, what do I care?

They also buried the code deeper into the folder tree, from "My Documents\Visual Studio Projects\MyApp" to "My Documents\Visual Studio 2005\Projects\MyApp\MyApp". How did that improve my experience?

link|flag
vote up 0 vote down

IntelliSense hogging the up/down keys to scroll through search results.

So if you're typing some function call and want to move to the next line it's (esc)(down) instead of just (down).

link|flag
vote up 0 vote down

I've got a solution reaching 70 projects and constantly growing (I've done a very small percentage of the project).

The toolbox doesn't remember my additions - Telerik and ASP.NET AJAX (you'd think the last one would be remembered by the IDE because it's all Microsoft!).

Html Designer crashes (or used to).

Got .NET 3.5/VS2008 SP1 and now my Silverlight projects cannot be loaded!

link|flag
vote up 166 vote down

The length of time the Help dialog takes to appear (locking up the IDE in the process)...

It is quicker for me to open Firefox, type what I'm after into Google, click on the relevant MSDN link, read my solution/search again and make a cup of tea, than it is for help to load.

link|flag
31  
I always cringe when I accidentally hit F1. It's worthless. – jcollum Jan 27 at 19:52
13  
Hitting F1 means ctrl+shift+esc for me here... It's faster to kill VS and load the whole thing again then to wait for help to open. Except if there are unsaved changes pending.. then I better go grab some coffee. – boris callens Mar 10 at 8:28
4  
+1 it's soooo slooow. And when it does open it normally opens a completely unrelated topic, or an "information not found" message. I now always leave a Firefox running and google everything. – demoncodemonkey Mar 10 at 8:39
5  
REMAP that damn shortcut! ^^ – Arnis L. Jun 26 at 18:08
8  
Everyone complaining about accidentally pressing the shortcut... Open Tools/Options, Keyboard, type "f1help", and change the shortcut from F1 to Alt+F1 or something. Problem solved! Now upvote this comment already, too few people know about this... – romkyns Oct 16 at 11:04
show 14 more comments
vote up 13 vote down

The performance is my main annoyance definitely.

Visual studio is the slowest desktop application I have.

link|flag
show 6 more comments
vote up 2 vote down

Solution Explorer visibly repaints itself too often; for instance, every time you double click in the main editor. Seen on Vista (I don't recall seeing that in Windows XP).

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

Shift+alt+F10 for auto adding the relevant namespace, come on you could do better than that......

link|flag
show 2 more comments
vote up 0 vote down

I'm not sure if this is Visual Studio or SourceGear or both but I'd say once every other day I have to rebind my two web projects in my solution to source control.

I wish I could work with SQL Server better inside the VS IDE and stay out of Management Studio.

I agree with what someone said a few posts up, no competition.

But if these are my biggest gripes then I'm doing okay.

link|flag
vote up -12 vote down

The weenies.

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

When I'm doing WPF, it crashes constantly. Three or four crashes per hour of work.

link|flag
1  
and it's SLOWWWWWWW – Mehrdad Afshari Jun 11 at 19:30
show 5 more comments
vote up 9 vote down

The price! (Coupled with the fact that for most development tasks, realistically I don't have any alternatives).

link|flag
2  
Are you aware of the free Express versions of VS? microsoft.com/Express – Dave R. Dec 15 '08 at 14:44
show 2 more comments
vote up 0 vote down

Output to OMF format so it can be used directly with digital mars tools which use OMF but visual studio uses COFF. I always use this tool because it is less buggy than digital mars's converter but if anyone knows how to output in OMF in MS visual studio please share your knowledge.

link|flag
vote up 0 vote down

Extremely slow refactoring, lack of refactoring features, slow symbol search, constant recompiling due to terrible non-incremental compiler, lack of occurrence highlighting, the list goes on. Visual Studio has a lot of catching up to do, a sad state considering how it used to be the best. I actually miss Eclipse.

link|flag
show 2 more comments
vote up 14 vote down

Windows Workflow Designer.

It's a crippled, one-legged, drunk, poisened, hippopotamus carrying fifteen elephants slow. It's an absolute dog. It's really the shining example of why shifting portions of VS from native code to managed code was just a silly idea.

link|flag
2  
Haha, I LOL'ed! (And it is true.) – Eyvind Mar 19 at 9:27
show 1 more comment
vote up 58 vote down

I think the help system for Visual Studio is horribly, horribly broken. Between online and offline content, finding help on topic was much much better 10 years ago than it is now. Now, you often navigate a maze of help. There are likely many more help "pages", but it is so much more like being at the zoo.

Simplify! Make it work well! Is that too much to ask?

Related item: I know it is fixable, but I've had to correct this for other developers on my team: when other items are installed (SQL Server, for example), it can mess with the Visual Studio help system. It is correctable, but why so complicated? Just make it work.

link|flag
12  
Is there any way to hookup f1 to just googling the msdn site? – Martin Beckett Nov 17 '08 at 22:04
1  
"Is there any way to hookup f1 to just googling the msdn site?" In theory yes; try writing a macro and then assigning the F1 key to that macro. – Timwi Sep 12 at 15:49
show 2 more comments
vote up 2 vote down

Its truly and deeply CRAPPY integration with SourceSafe. If I'm in SourceSafe itself and I want to check out a branched version of a file, no problem. But if I'm in Visual Studio, it completely scrozzes the destination folder settings for the entire branch and then checks out the wrong version on top of it. I not only have to manually uncheck and fix the files, but I also have to shut down VS and SS and manually delete the incorrect ss.ini folder settings to prevent SS from continuing to use the wrong branch folders. I've completely given up on ever letting Visual Studio check anything in/out of any branch other than the central development line.

link|flag
2  
I hope Microsoft spends exactly 0 time working on anything to do with SourceSafe. Let them spend their time making it easier for you to move off source safe. – Jay Bazuzi Nov 16 '08 at 16:13
1  
It's a sinking ship (SS) you should be planning your exit strategy. – jcollum Jan 27 at 19:56
show 2 more comments
vote up 9 vote down
  • Mobile tools got moved from Standard 2005 to Professional 2008. Irritating.
  • 2008: Unit testing (MSTS) built in, but code coverage is only in Team Suite? That's pants.
  • 2005 & 2008: Installing service pack 1 should not take an entire freaking day. (I realize this is more or less related to the idiocy that is the Windows Installer. But really, it'd be faster just give everyone a new ISO to download and have them uninstall the original and reinstall with SP1.)
  • 2005 & 2008: Opening a solution with > 15 projects? Go grab a sandwich.
  • 2005 & 2008: Sometime during the day, I bring up the "Record Macro" toolbar accidentally at least once. I'm still not quite sure what key combo I keep pressing to trigger this.

Despite all that, you can pry my copy of Visual Studio from my cold, dead hands.

link|flag
4  
Same here with "Record Macro". The trick is to embrace it and actually record a macro when it happens. Come on, you know you want a macro! – bzlm Mar 10 at 8:10
1  
HA! Jeej for spontanious macros :P – boris callens Mar 10 at 8:43
show 8 more comments
vote up 28 vote down

I actually used to think Visual Studio was awesome... until I used Eclipse for a few years. Now I really miss programming Java in Eclipse.

Things I DONT like:

  1. Clicking on a variable doesn't highlight all of its instances, like in Eclipse.
  2. VS doesn't fix errors as well as Eclipse. For example, often a build error will spit out a message saying exactly how to fix it, but there isn't a way for the editor to just do it for you. In eclipse, almost every error has the "!" icon next to the line that will give you options to fix it automatically.
  3. Would like an easy way to clean up the "using" section. I don't want every new class to include things like LINQ and System.Text. Would be nice to have a "remove unneeded usings" option.
  4. All the different project templates get confusing and don't have good descriptions. It is also hard to convert between them. For example, there are seperate project templates for a WCF standalone service, and an IIS hosted WCF service. Both build a .dll, but only one has a web.config set up for IIS. The initial template descriptions aren't clear on which does what.
  5. Code isn't compiled as I type to find errors. In Eclipse, errors are highlighted in realtime as you type. In VS, you have to build the project to get errors to show up,a nd sometimes build it again after fixing to get the error to go away. Hence I find myself pressing "F6" after every method I create to make sure its correct.

Things I DO like:

  1. Visual designer. Top notch!
  2. typing "DataTable dt = new " pops up the intelisence window right to "DataTable()". Eclipse doesn't even do that :)
  3. typing "myClass.SomeEvent += " pops up a "press tab to insert" box to create a default handler method for the event.
  4. Generally pretty stable. I don't have it crash or lock up very often.
  5. Integrated ASP.NET/SCF test web server, instead of deploying to fullblown IIS for every test run.
link|flag
3  
Which costs even more money. – Matt Nov 16 '08 at 6:00
12  
"Remove unused usings" is in VS2008. I use the "remove and sort" which is bound to Ctrl-Shift-U on my setup. I don't know if that's the default key though. – Jon Skeet Nov 16 '08 at 7:19
5  
For point 1 you can have a look at the [Rock Scroll AddIn][1]. For 3 check out the [Power Commands][2] [1]: microsoftdev.blogspot.com/2008/05/… [2]: code.msdn.microsoft.com/PowerCommands – mxp Nov 16 '08 at 17:11
1  
Don't like #5: Switch to VB.NET, Visual Studio compiles as you type for VB.NET :) And #4 - you can customize the project templates, no? – MarkJ Mar 14 at 21:53
6  
SP1 for VS2008 adds background compilation like you have in Eclipse. – JulianR May 10 at 15:13
show 11 more comments
vote up 1 vote down

I love the squiggly lines indicating I have a mistake, but when I fix it, can't it check my new code a little quicker? I often find myself watching, waiting for it to disappear...

lack of multi-monitor support is a bigger issue though.. Excel and Visual Studio both seem like apps from the dark ages with no ability to take advantage of several screens. Does anyone code on a single screen anymore?

Viewing resources could use some more organization and options. It is like going to a folder and being forced to view all the files with only a single 'view'...

link|flag
show 2 more comments
vote up 7 vote down

Creating a new file takes a ridiculous amount of mouse clicks.

link|flag
show 14 more comments

Your Answer

Get an OpenID
or

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