Autocomplete intellisense not working in Visual Studio 2010 Ultimate RC

Locked Autocomplete intellisense not working in Visual Studio 2010 Ultimate RC

  • quarta-feira, 17 de fevereiro de 2010 21:04
     
     
    Using C# in Visual Studio 2010 Ultimate RC intellisense only works when I use crtl-space, When typing I do not get autocomplete and after typing "." after a method or variable I do not get a drop down list of suggestions. My settings  in Tools --> Options --> TextEditor -C# match exactly my settings in VS 2008 where intellisense works as expected.

    What can I do to correct this?

    Thanks.
    • Movido YiChun ChenModerator quinta-feira, 18 de fevereiro de 2010 03:41 VS2010 issue (From:Visual Studio Setup and Installation)
    • Movido Aaronru - MSFTMicrosoft Employee sexta-feira, 19 de fevereiro de 2010 08:47 moving this thread to the C# IDE forum. (From:Visual Studio 2010 Install and Setup)
    •  

Todas as Respostas

  • quinta-feira, 18 de fevereiro de 2010 03:41
    Moderador
     
     
    Hi SR1995,

    I am moving this thread from Base "Visual Studio Setup and Installation" forum to the "Visual Studio 2010 Setup and Installation" forum, since the issue is related to VS2010. There are more experts in the "Visual Studio 2010 Setup and Installation" forum.

    Thanks

    Best regards,
    Yichun Chen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
  • segunda-feira, 22 de fevereiro de 2010 02:31
    Moderador
     
     Respondido
    Hello,

    As far as I researched, there is a known issue about the VS 2010 Intellisense. The issue can cause Intellisense dismissed or VS crashed.

    You can find more information from Scott Gu's blog,
    http://weblogs.asp.net/scottgu/archive/2010/02/15/patch-for-vs-2010-rc-intellisense-crash-issue-now-available.aspx
    , as well as a hotfix for the issue.

    If you still encounter this, I suggest you raise a feedback in connect site to report it.


    Best regards,
    Ji Zhou
    MSDN Subscriber Support in Forum
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    • Marcado como Resposta Ji.ZhouModerator quinta-feira, 25 de fevereiro de 2010 03:50
    •  
  • quarta-feira, 24 de fevereiro de 2010 02:45
    Moderador
     
     
    Hello SR1995,

    Does that hotfix work for you? What is the status of the issue in your side?


    Best regards,
    Ji Zhou
    MSDN Subscriber Support in Forum
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
  • quarta-feira, 3 de março de 2010 22:07
     
     
    The hotfix did not correct my Intellisense problem. The situation remains as in my post of 2/17.

    Thank you.


  • sexta-feira, 5 de março de 2010 02:17
    Moderador
     
     Resposta Proposta
    Hello SR1995,

    I cannot reproduce the issue. Then could you please try to reset your Visual Studio by,

    1. Make sure no devenv.exe is running.
    2. Try running from Start->Run:
       devenv /resetuserdata (This causes a new devenv process run to do the resetting job)
    3. Open task manager and check that the devenv process finishes (this takes a couple of minutes)


    If this still does not resolve the issue, I suggest you submit this issue via connect site.
    https://connect.microsoft.com/VisualStudio



    Best regards,
    Ji Zhou - MSFT
    MSDN Subscriber Support in Forum


    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    • Sugerido como Resposta Jugal Panchal terça-feira, 27 de setembro de 2011 11:27
    •  
  • segunda-feira, 22 de março de 2010 09:12
     
     Respondido

    Hello.

    I had the same problem - its not a bug and misunderstod above:

    You and I accidentally switched into low-impact IntelliSense mode by pressing Ctrl+Alt+Space. Just hit Ctrl+Alt+Space to go back to the thing you want.

    (I suppose you are not having this problem any more, but other peope might come by ;) )

    More about this problem here:

    http://social.msdn.microsoft.com/Forums/en/vseditorprerelease/thread/0b58d586-520b-49c4-bb78-e1d1eb5bd309

    Best regards.

    Anders Both - Denmark.


     

    • Sugerido como Resposta Anders Both segunda-feira, 22 de março de 2010 09:30
    • Marcado como Resposta Ji.ZhouModerator segunda-feira, 22 de março de 2010 11:34
    •  
  • quarta-feira, 16 de março de 2011 14:54
     
     
    I was having the same problem this morning.  The Ctrl+Alt+Space suggestion didn't work in my case but running devenv with the /resetuserdata argument did.  Thanks for the help.
  • domingo, 27 de março de 2011 01:04
     
     

    Hi Anders,

     

    Thank you very much for the info you shared.

    Ctrl+Alt+Space fixed the IntelliSense in my case.

     

    Regards,

    Deepak

  • quarta-feira, 10 de agosto de 2011 14:39
     
      Contém Código

    none of the above solved my problem. I found out that in the web.config file, the system.web > pages > controls had several dlls that were no longer being referenced by the project (but still had 'asp' prefixes):

    When I removed the top 4 Microsoft.Web.Preview tags (carried over from several versions of code and no longer used or referenced), it suddenly worked.

     

     

        <pages theme="DefaultTheme">
          <controls>
            <add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI" assembly="Microsoft.Web.Preview" />
            <add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI.Controls" assembly="Microsoft.Web.Preview" />
            <add tagPrefix="asp" namespace="Microsoft.Web.Preview.Search" assembly="Microsoft.Web.Preview" />
            <add tagPrefix="asp" namespace="Microsoft.Web.Preview.Diagnostics" assembly="Microsoft.Web.Preview" />
            <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add tagPrefix="ajaxToolkit" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" />
          </controls>
        </pages>
    


     


    David
  • terça-feira, 27 de setembro de 2011 11:32
     
     Resposta Proposta
    Resetting Visual Studio as Ji.Zhou said... now it is working.
    So Reset by "devenv /resetuserdata"
    • Editado Jugal Panchal terça-feira, 27 de setembro de 2011 11:33
    • Sugerido como Resposta Andy_Universital segunda-feira, 26 de dezembro de 2011 16:37
    •  
  • domingo, 2 de outubro de 2011 15:07
     
     
    This solved my problem as well, so I'd like to second the "proposed as answer".
  • quinta-feira, 19 de janeiro de 2012 15:11
     
     
    Resolved my issue by run "devenv /resetuserdata" command
    KVReddy
  • domingo, 29 de janeiro de 2012 01:16
     
     Resposta Proposta

    Anders,

    Ctrl-Alt-Space only turns drop-down box "automatic selection" on or off. You still get the drop down box whether this is on or off.

    BTW - the problem causing my missing intellisense was me having turned off compilation for the class I was working in - der!

    Steve 

    • Sugerido como Resposta Dave-JD terça-feira, 20 de março de 2012 14:33
    •  
  • sexta-feira, 2 de março de 2012 10:00
     
     Resposta Proposta

    I had the same problem, I tried different methods suggested in different discussion forms, but none worked fine in my case. But in between I found the intellisense is not working for a single solution and finally found the compilation error makes the intellisense not working. So in order to reach your problem you may go through these steps

    1. Compile the entire solution and correct the compilation error. If it is not working do the following steps too
    2. devenv.exe /ResetSettings
    3. devenv /resetuserdata
    4. Goto settings and check the following setting are there

    • Sugerido como Resposta Claudia177 quinta-feira, 12 de julho de 2012 19:18
    •  
  • segunda-feira, 12 de março de 2012 22:03
     
     
    Thanks it works for me :)
  • terça-feira, 20 de março de 2012 14:34
     
     
    I had a similar problem, somehow one of my files dropped out of the project, so "String." would bring up intellisense, but "this." would not. Adding the file to the project again through Solution Explorer fixed it.
  • domingo, 29 de abril de 2012 15:01
     
     
    I had the same problem, but my VS 2010 was not showing the CSS classes with intellisense. This tip resolved my problem. Thank you very much.
  • domingo, 29 de abril de 2012 15:02
     
     
    Hello SR1995,

    I cannot reproduce the issue. Then could you please try to reset your Visual Studio by,

    1. Make sure no devenv.exe is running.
    2. Try running from Start->Run:
       devenv /resetuserdata (This causes a new devenv process run to do the resetting job)
    3. Open task manager and check that the devenv process finishes (this takes a couple of minutes)


    If this still does not resolve the issue, I suggest you submit this issue via connect site.
    https://connect.microsoft.com/VisualStudio



    Best regards,
    Ji Zhou - MSFT
    MSDN Subscriber Support in Forum


    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

    It works for me!
  • quarta-feira, 30 de maio de 2012 06:00
     
     
    Worked for me as well !!! Thanks.
  • quinta-feira, 21 de junho de 2012 20:54
     
     Resposta Proposta
    This solution works for me Thanks Rajin.
    • Sugerido como Resposta Mulpuri quinta-feira, 21 de junho de 2012 20:55
    •  
  • quarta-feira, 27 de junho de 2012 14:08
     
     
    Thank you..... it worked for me
  • quinta-feira, 28 de junho de 2012 21:22
     
     

    Worked for me as well, had to do the deveenv /resetuserdata.  The Ctrl+Alt+Space didn't work so did the command line solution.

    Thanks :)

  • terça-feira, 17 de julho de 2012 15:24
     
     

    I had this issue when I accidentally opened my site in VS from the folder containing the wwwroot (rather than opening the wwwroot directly).  In my case, I noticed that the page declaration was indicating an error. 

  • terça-feira, 7 de agosto de 2012 18:06
     
     Resposta Proposta

    This works for me.

    Thanks a lot.

    • Sugerido como Resposta AnithRaj segunda-feira, 15 de outubro de 2012 07:19
    •  
  • segunda-feira, 15 de outubro de 2012 07:20
     
     

    in case u have done any mistakes in the code intellisence will not work.....check the code....