intellisense

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dragonslayer008@hotmail.com

    #1

    intellisense

    I made a control library project using Visual Studio 2005 with C++/
    CLI. I now have my code working and running, but none of the
    intellisense works. Is there a setting I need to turn on, or is the
    intellisense for C++/CLI not good?

  • David Lowndes

    #2
    Re: intellisense

    >I made a control library project using Visual Studio 2005 with C++/
    >CLI. I now have my code working and running, but none of the
    >intellisense works. Is there a setting I need to turn on, or is the
    >intellisense for C++/CLI not good?
    The Intellisense for C++ in general can get confused. One thing you
    can try is to close the solution and delete the .ncb file - it'll get
    rebuilt when you next open the solution.

    Dave

    Comment

    • Peter Oliphant

      #3
      Re: intellisense

      In hindsight, it might have been a good idea to have an option in the GUI of
      VC++ to delete the Intellisense file without having to do it manually (i.e.,
      find directory, find file, delete it manually). And since it tends to grow
      over time, an option that automatically deletes it when it reaches a
      user-definable size would also be nice.

      My 2 cents...

      [==P==]

      "David Lowndes" <DavidL@example .invalidwrote in message
      news:jhh1f31gvv 2blf7sm0vilsp3q mbq4jgm97@4ax.c om...
      I made a control library project using Visual Studio 2005 with C++/
      >>CLI. I now have my code working and running, but none of the
      >>intellisens e works. Is there a setting I need to turn on, or is the
      >>intellisens e for C++/CLI not good?
      >
      The Intellisense for C++ in general can get confused. One thing you
      can try is to close the solution and delete the .ncb file - it'll get
      rebuilt when you next open the solution.
      >
      Dave

      Comment

      • David Lowndes

        #4
        Re: intellisense

        >In hindsight, it might have been a good idea to have an option in the GUI of
        >VC++ to delete the Intellisense file without having to do it manually (i.e.,
        >find directory, find file, delete it manually). And since it tends to grow
        >over time, an option that automatically deletes it when it reaches a
        >user-definable size would also be nice.
        Better still - it needs to be flawless and work without being a
        glutton. ;)

        Dave

        Comment

        • =?Utf-8?B?SlA=?=

          #5
          Re: intellisense

          I also agree with David.

          This is most workable solution to the intellisense problem.
          I mean deleting the ncb file. Also one needs to check if the
          tools->options->C/C++ General options are set correctly.

          "David Lowndes" wrote:
          In hindsight, it might have been a good idea to have an option in the GUI of
          VC++ to delete the Intellisense file without having to do it manually (i.e.,
          find directory, find file, delete it manually). And since it tends to grow
          over time, an option that automatically deletes it when it reaches a
          user-definable size would also be nice.
          >
          Better still - it needs to be flawless and work without being a
          glutton. ;)
          >
          Dave
          >

          Comment

          • Peter Anthony

            #6
            Re: intellisense

            Has MS indicated publically that they are aware of the Intellisense problem
            (which has existed for years), and have they (at least theoretically) fixed
            it in 2008?

            Intellisense is one of the most useful tools when it works, and one of the
            worst hinderances when it doesn't! : )

            "JP" <JP@discussions .microsoft.comw rote in message
            news:426E51DD-559B-4C9D-81AA-728BB34964E2@mi crosoft.com...
            >I also agree with David.
            >
            This is most workable solution to the intellisense problem.
            I mean deleting the ncb file. Also one needs to check if the
            tools->options->C/C++ General options are set correctly.
            >
            "David Lowndes" wrote:
            >
            >In hindsight, it might have been a good idea to have an option in the
            >GUI of
            >VC++ to delete the Intellisense file without having to do it manually
            >(i.e.,
            >find directory, find file, delete it manually). And since it tends to
            >grow
            >over time, an option that automatically deletes it when it reaches a
            >user-definable size would also be nice.
            >>
            >Better still - it needs to be flawless and work without being a
            >glutton. ;)
            >>
            >Dave
            >>

            Comment

            Working...