views:

809

answers:

2

Hello, I installed VS2010 on my Windows 7 x64... The patch to fix Intellisense as well (http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=26662)...

But my C# Intellisense doesn´t work... It doesn´t crash, but nothing happens when I typing... Just if I press a Ctrl+Backspace it appears...

In my Javascript file the Intellisense is working fine...

Any idea?

Thanks

+3  A: 

EDIT: These are the options that should be enabled:

Tools->Options->Text Editor->C#->General->Auto list members
Tools->Options->Text Editor->C#->General->Parameter information
Tools->Options->Text Editor->C#->Intellisense->Show completion list after a character is typed


See my response to http://stackoverflow.com/questions/2269437/vs2010-rc-is-intellisense-broken-how-do-i-turn-it-on/2269719#2269719:

Did you have ReSharper installed with Visual Studio 2008? ReSharper (in VS2008) turns off Intellisense explicitly in order to replace it with their own.

If this is the case, you can turn it back on with the options under Tools->Options->Text Editor->[language] (and sometimes also under the Intellisense node under each language).

For example, for C#, the first checkbox under Tools->Options->Text Editor->C#->Intellisense is "Show completion list after a character is typed". Make sure that is checked.

Noah Richards
Yes, I have ReSharper with VS2008...But the option "Show completion list after a character is typed" of C# language is already checked...Anything else?Thanks
Paul
Try the first two checkboxes under Tools->Options->Text Editor->C#(->General) ("Auto list members" and "Parameter information"). I believe those also have to be checked.
Noah Richards
That´s it! Thanks...
Paul
A: 

Scott Gu posted an entry about Intellisence crashing with VS2010 RC1. And later about a patch. This may be causing your problem. If not try Noah's suggestion.

Matthew Whited
As I posted, I already installed the patch...
Paul
Sorry I read over that part. But I am going to leave this answer because it may provide insight to other people that are having similar issues.
Matthew Whited