GutierrezDev
GutierrezDev

Reputation: 1076

Intellisense doesn't work with an upgraded solution from vs 2005 in vs 2008

I converted a VS2005 solution to VS2008, but Intellisense isn't working. It works fine with a native solution made in VS2008. Its a C# solution.

Upvotes: 0

Views: 56

Answers (1)

Brian R. Bondy
Brian R. Bondy

Reputation: 347236

For VC++:

  1. Close your solution
  2. Delete your .ncb file
  3. Open your solution again

By the way VC++'s intellisense is re-written in VS2010 to be much better.

For C#:

For C# projects Intellisense is stored in projdata files. (Do a backup before deleting just in case it has something else in there)

Another thing to check for C#:

Go to: Tools | Options | Text Editor | C#

Make sure Auto list memebers is on, and Parameter information is on,

Upvotes: 2

Related Questions