How to get Intellisense on error-marked code in Visual Studio 2005? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:18:48Z http://stackoverflow.com/feeds/question/88343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005 0 How to get Intellisense on error-marked code in Visual Studio 2005? André Neves 2008-09-17T22:29:17Z 2009-03-23T09:23:57Z <p>When I try to compile code on VS 2005 and it fails, the line which causes the error gets underlined blue, and mouse-hovering over it displays the error message. Fine, but you can't see object types or whatever, because Intellisense will show the error message, and not object info.</p> <p>In this image, I wanted to see what type <code>DateTime.Subtract()</code> returns, but VS insists on showing the error message:</p> <p><img src="http://img502.imageshack.us/img502/6962/vs2005errordl7.png" alt="alt text" /></p> <p>Does anyone know how to get the error message out of the way, <strong>once you've got enough of it</strong>?</p> http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005/88362#88362 0 Answer by lordscarlet for How to get Intellisense on error-marked code in Visual Studio 2005? lordscarlet 2008-09-17T22:31:00Z 2008-09-17T22:31:00Z <p>ctrl-space inside the parens</p> http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005/88459#88459 0 Answer by AndrĂ© Neves for How to get Intellisense on error-marked code in Visual Studio 2005? AndrĂ© Neves 2008-09-17T22:46:09Z 2008-09-17T22:46:09Z <p>I just found that the equivalent to mouse hovering is <code>View -&gt; IntelliSense -&gt; Quick Info</code>. If the solution does not arise here, I'll just use the shortcut <code>Ctrl+K, Ctrl+I</code>.</p> http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005/171058#171058 1 Answer by Danny Tuppeny for How to get Intellisense on error-marked code in Visual Studio 2005? Danny Tuppeny 2008-10-04T21:51:50Z 2008-10-04T21:51:50Z <p>Cut the first part of the line ("DateTime duracao = ") into the clipboard, then you should be able to hover over "Subtract" and see the return type. Not ideal, but I find myself doing it all the time!</p> http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005/228474#228474 1 Answer by Bevan for How to get Intellisense on error-marked code in Visual Studio 2005? Bevan 2008-10-23T03:45:44Z 2008-10-23T03:45:44Z <p>Select "Build|Clean Solution" - this cleans up intermediate files and other things. More importantly, it also clears the list of error messages, restoring normal behaviour of Intellisense.</p> http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005/251966#251966 0 Answer by korro for How to get Intellisense on error-marked code in Visual Studio 2005? korro 2008-10-30T22:16:32Z 2008-10-30T22:16:32Z <p>Since duracao is a DateTime, and the error message is 'cannot convert <strong>Timespan</strong> to <strong>DateTime'</strong> - you can already see the subtract function is returning a Timespan</p>