Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to completely remove "error list" from visual studio 2008, not disable it i want it gone. It annoys me to no end popping up endlessly, i guess i must be "doing it wrong" but w/e i just want to use VS without being alerted every other keystroke about some warning.

I've tried editing many different fields in the options (tools -> options) it has only slightly decreased the frequency of the error list popping up. I have also deselected errors, warnings, and Messages. and it pops up with nothing to display. unpinning it doesn't help either.

also upgrading to VS 2010 is not an option at this point.

Im looking for a solution something like the following: remove a dll or config file responsible for this

Also I still want the inline validation (the little squiggly marks, etc), but the error list window annoys me.

share|improve this question
Please give a specific scenario – jdv-Jan de Vaan Apr 27 '11 at 19:38
Specific scenario: i want to see all build output in the Output window below – amuliar May 17 '11 at 9:52

4 Answers

up vote -1 down vote accepted

Warnings and errors are valuable information - you should be trying to remove all the existing ones from your code instead of sweeping them under the rug.

Regardless of this (philosophical?) issue, this is not possible. The window is an integral part of Visual Studio and can't be removed.


Update:

You can set the window to be a docked or tabbed window (right click on the title bar) - this should help.

share|improve this answer
there arn't any, it gives new errors as im typing, for reasons like a half written variable "doesnt exist" – Letseatlunch Apr 27 '11 at 19:21
1  
@Letseatlunch - It pops up as you type? This is not normal behavior. – Oded Apr 27 '11 at 19:26
1  
That happens to me all the time. Especially when editing ASP.NET .aspx markup files. It'll pop up a warning that I have re-declared the same variable name when I'm trying to use two variables that have the same longish prefix, so I've copied the name from the first to change a few characters at the end. I don't mind the warning, but I feel @LetsEat's pain regarding the popup. – Charlie Kilian Apr 27 '11 at 19:54
Setting it to floating and reducing the size to its minimum and then putting somewhere out of the way seems to be a reasonable work around so far... @Oded @Charlie kilian – Letseatlunch Apr 27 '11 at 19:54
@Oded - is too. VS has "check as you go" syntax-checking, so if the error list is visible, errors appear and disappear. As to the OP, I generally dock the error list at the botto. and auto-hide or "unpin" it. Then, the list only pops into view when actually building. – KeithS Apr 27 '11 at 20:05
show 3 more comments

I think this is probably exactly what you're wanting:

http://blogs.msdn.com/b/zainnab/archive/2010/05/16/hide-or-show-error-list-when-the-build-finishes-with-errors-vstiptool0022.aspx

You can change this behavior by going to Tools -> Options -> Projects and Solutions -> General and deselecting the "Always show Error List if build finishes with errors".

I'm guessing this will work with ASP.Net as well, since that's building on the fly.

share|improve this answer
I plus-oned you, but VS still likes to popup the errors window even if I don't have any errors. – Peder Rice Jan 25 '12 at 17:16

On Error tab, you have Errors / Warnings / Info buttons. Click on Errors button (de-press).

hope it helps.

share|improve this answer
1  
yes i have done that: "I have also deselected errors, warnings, and Messages. and it pops up with nothing to display" – Letseatlunch Apr 27 '11 at 19:20

I suggest turning off inline validation.

Yes, I know that you still want it. But, seriously, how important is it? It's trying to validate code that is half-written. How valuable can that be?

First of all, as-you're-typing code validation is distracting. It makes it harder to focus on the problem you are trying to solve. For example, writing a function with a non-void return will display the "not all code paths return a value" error continually until you get to the end of the function. In the meantime, the editor is telling you that there is a problem. I am sure that people learn to ignore these things over time (I have never kept the feature on for more than a few minutes after a new VS installation, so I don't know), but if you are actively ignoring something, then what good is it?

Second of all, any good that the validation would be capable of is unnecessary, because those errors will be brought to your attention at compile-time anyway. Having an uninitialized variable pointed out to you while you are thinking through the algorithm does not improve the quality of the code at all verses having it pointed out when you try to run the program. The variable is still going to be initialized either way. And there is an extremely high likelyhood that you are going to fix the problem before trying to run the code anyway.

So I just don't see the point of it. I suggest turning it off, and then your problem goes away.

UPDATE

As pointed out by @Charlie Kilian, there is a flaw in VS in which .aspx files are not validated at all, unless the "Show live semantic errors" option is enabled for C#, rather than validating those pages at compile-time as would be expected.

Therefore, editing aspx files will require turning this option back on for validation.

I guess I'll be going back-and-forth with it from now on. I hope they fix this in future versions of VS.

I still think that doing a semantic analysis and error-reporting on code that is actively being edited is a fool's errand. (Of course, I have also been known to write entire programs in notepad, just to see if I could get it to compile and run correctly the very first time without the crutch of Intellisense. It feels pretty awesome when it works.)

share|improve this answer
ok, can i get a quick link to something on how to do this, (im also googling myself too) – Letseatlunch Apr 27 '11 at 19:38
I think it's this: "Tools" menu / "Options" menu item / "Text Editor" tree-node / "C#" subnode / "Advanced" subnode / "Editor Help" control section / uncheck "Underline errrors in the editor" and "Show live semantic errors" checkboxes. – Jeffrey L Whitledge Apr 27 '11 at 19:45
That works for C# code, but it doesn't do much good with .aspx files which don't get compiled, but are interpreted at runtime. – Charlie Kilian Apr 27 '11 at 19:55
@Charlie Kilian - Haphazard aspx validation is a chronic problem for me. Sometimes some aspx files are validated, but usually they aren't. I have always wondered why it was like that. But I don't see why turning off the option for C# should even affect aspx validation, since it isn't C#! – Jeffrey L Whitledge Apr 27 '11 at 20:02
@Charlie Kilian - (continued) I actually mentioned this problem at the end of this question stackoverflow.com/questions/4565024/… . I never thought about the possiblity that aspx validation was being intertwined with C# editor validation. Interesting. – Jeffrey L Whitledge Apr 27 '11 at 20:06
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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