active questions tagged intellisense - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:36:53Zhttp://stackoverflow.com/feeds/tag/intellisensehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/285512/is-there-any-way-to-hide-a-javascript-file-from-intellisense-in-visual-studio-23Is there any way to 'hide' a JavaScript file from IntelliSense in Visual Studio 2008?flesh2008-11-12T21:50:52Z2009-12-14T20:30:24Z
<p>I have a third party JavaScript plug-in but including the file breaks IntelliSense for jQuery amongst other things. The only way I can get IntelliSense back working with jQuery is by commenting out the plug-in. Is there a way I can hide the plug-in file from the IntelliSense parser?</p>
http://stackoverflow.com/questions/1837403/intellisense-not-working0Intellisense not workingDhawal2009-12-03T03:15:48Z2009-12-11T15:52:48Z
<p>Intellisense is not working correctly for new user Controls. Any class in the same namespace as my new class is not visible in intellisense. It compiles without any problem. I'm using VS 2008.</p>
http://stackoverflow.com/questions/1886825/intellisense-with-single-source-file-in-multiple-projects0Intellisense with single source file in multiple projectsBahbar2009-12-11T09:22:16Z2009-12-11T09:22:16Z
<p>In a single solution, if I have the same source file present in multiple projects (with different project settings, e.g. different #defines), Intellisense and all the features depending on it seems to arbitrary pick one of the project settings when I edit the source file.</p>
<p>How do I get Intellisense to switch which project settings it uses for that file ?</p>
<p>If that is not possible, it would be at least useful to know which project Intellisense picks ?</p>
http://stackoverflow.com/questions/1877216/why-is-my-visual-studio-2008-project-read-only0Why is my visual studio 2008 project read-onlyRichard2009-12-09T22:00:21Z2009-12-09T22:04:11Z
<p>I'm working on a project for school, we use visual studio 2008 there and I use it at home, both are express edition. The project in question I started at school, but I cannot edit it at home, when I open the .sln I get this </p>
<p>"The IntelliSense information will not be available for .VC++ projects because the Intellisense database file Location/Junk.ncb could not be opened for writing.</p>
<p>Other features will also be affected if the solution directory is read-only."</p>
<p>How do I open my project so that I can edit it?</p>
http://stackoverflow.com/questions/1563749/visual-studio-copy-to-clipboard-ide-freezes1visual studio copy to clipboard IDE freezesbenpage2009-10-14T00:55:37Z2009-12-08T00:00:03Z
<p>this is really frustrating me. this problem occurs when I have a particularly large .cs file (one i'm working on at the moment has 6000 lines and many anonymous types).</p>
<p>I will copy a line or a part of text, and sometimes after copying several things to the clipboard, or sometimes even after the first copy, vs CPU usage shoots up to 50% and the IDE freezes for anything up to a minute, maybe longer. pasting happens immediately, no freezing.</p>
<p>if i end the devenv.exe task and restart it, usually the copying is good again for a couple of times until it starts freezing again.</p>
<p>i have a feeling the problem <em>could</em> be tied to intellisense trying to recalculate itself.. but why this happens when code is copied doesn't really make sense to me. </p>
<p>one thing i have found that if i copy text via the "select and drag & ctrl with the mouse" method, i avoid the problem. that is what led me to believe it may be something to do with the clipboard ring, or writing to the clipboard.</p>
<p>i have already tried:</p>
<ul>
<li>SP1 installed</li>
<li>disabled antivirus</li>
<li>disabled intellisense by renaming feacp.dll (this doesn't seem to disable it at all)</li>
<li>disabled intellisense by unticking texteditor/c#/intellisense checkboxes (also doesn't seem to disable it at all)</li>
<li>disabled intellisense by unticking auto list members & parameter information (does seem to disable it)</li>
<li>ran a macro to remove all items from the clipboard ring - it removed them but the problem remained.</li>
</ul>
<p>i must stress this only seems to happen as the code files get large, which is also usually due to having many anonymous types in the code.</p>
<p>i'm using Win7 x64 with 3gb RAM, however i had this problem on vista x64 too.</p>
<p>also, and i mean this in the nicest possible way, please don't take the refactoring approach. i do a lot of database work with large data sets so the anonymous types need to be there. it's my opinion that no matter how someone writes their code, this functionality of VS should work properly without freezing the IDE.</p>
http://stackoverflow.com/questions/1846136/xslt-intellisense-in-visual-studio-20082XSLT Intellisense in Visual Studio 2008Craig Bovis2009-12-04T10:33:29Z2009-12-07T09:40:07Z
<p>I have an XML file which in addition to it's standard XML schema allows the use of XSLT.</p>
<p>I am including the correct namespace for XSLT (xmlns:xsl="http://www.w3.org/1999/XSL/Transform") however I am not receiving Intellisense for XSLT when I start typing xsl: tags.</p>
<p>Is it possible to turn this on? When I edit XSLT files it works absolutely fine.</p>
http://stackoverflow.com/questions/1858235/wpf-xaml-intellisense-doesnt-work-correctly-for-custom-routed-event-handlers0WPF XAML Intellisense doesn't work correctly for custom routed event handlersdkjunior2009-12-07T06:33:41Z2009-12-07T06:40:04Z
<p>I defined a custom routed event with the following constructs (names changed):</p>
<p>public class MyRoutedEventArgs : RoutedEventArgs
{...}</p>
<p>public delegate void MyRoutedEventHandler(Object sender, MyRoutedEventArgs args); </p>
<p>public static readonly RoutedEvent MyEvent;</p>
<p>MyClass.MyEvent =
EventManager.RegisterRoutedEvent("MyEvent", RoutingStrategy.Tunnel, typeof(MyRoutedEventHandler), typeof(MyClass));</p>
<p>Next, I'm creating a CLR event wrapper:</p>
<p>public event MyRoutedEventHandler MyEvent {
add { AddHandler(MyEvent, value); }
remove { RemoveHandler(MyEvent, value); }
}</p>
<p>The problem is when I define it as shown above, XAML intellisense doesn't work for autogenerating the handler method body. What I noticed is that if you change your CLR event wrapper to use generic RoutedEventHandler type, everything works! However in this case, the auto-generated method gets a generic RoutedEventArgs (well, correctly corresponding to RoutedEventHandler), which forces me to manually rewrite it as MyRoutedEventArgs.</p>
http://stackoverflow.com/questions/1838683/visual-studio-2008-intellisense-with-struct-keyword0Visual Studio 2008 Intellisense with struct keywordKavitesh Singh2009-12-03T09:17:57Z2009-12-07T05:58:05Z
<p>I am using visual studio 2008 express edition.</p>
<p>A normal win32 console C project with the code below:</p>
<pre><code>int main(void)
{
struct _addr_info
{
char name[30];
char street[40];
char city[20];
char state[3];
unsigned long int zip;
} addr_info;
addr_info.zip = 12345;
return 0;
}
</code></pre>
<p>Generally for structures intellisense will list the members. Here it doesnt however it compiles fine and at debugging i checked the data also gets entered properly. Am i doing something wrong.</p>
<p>even this code has same prob.</p>
<pre><code>int main(void)
{
struct
{
char name[30];
char street[40];
char city[20];
char state[3];
unsigned long int zip;
} addr_info;
addr_info.zip = 12345;
return 0;
}
</code></pre>
<p>This code below also doesn't work.</p>
<pre><code>int main(void)
{
struct _addr_info
{
char name[30];
char street[40];
char city[20];
char state[3];
unsigned long int zip;
} ;
struct _addr_info addr_info;
addr_info.zip = 12345;
return 0;
}
</code></pre>
<p>The code below works fine and list the members of the structure.</p>
<pre><code>struct _addr_info
{
char name[30];
char street[40];
char city[20];
char state[3];
unsigned long int zip;
} addr_info;
int main(void)
{
addr_info.zip = 12345;
return 0;
}
</code></pre>
<p>This one too.</p>
<pre><code> struct _addr_info
{
char name[30];
char street[40];
char city[20];
char state[3];
unsigned long int zip;
} ;
int main(void)
{
struct _addr_info addr_info;
addr_info.zip = 12345;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1857712/intellisense-doesnt-work-in-vs-20080IntelliSense doesn't work in VS 2008Pramulia2009-12-07T03:54:01Z2009-12-07T04:19:09Z
<p>Can anyone help me figure out why IntelliSense doesn't work in VS 2008?</p>
http://stackoverflow.com/questions/1856589/winforms-treeview-sorted-property-and-vs-2008-object-browser1WinForms TreeView.Sorted Property and VS 2008 Object BrowserUros Calakovic2009-12-06T21:00:07Z2009-12-06T21:43:45Z
<p>I can't see the above property neither in the object browser nor in intellisense for TreeView, why is this? I can set in my code though, it and the project builds successfully. When I gight click it and select 'go to definition' it is shown like a public bool property. Is this normal, or have I messed something up?</p>
http://stackoverflow.com/questions/1805586/c-ide-with-good-intellisense1C++ IDE with good intellisensethr2009-11-26T20:48:54Z2009-12-06T20:28:22Z
<p>So I've been using Visual Studio 2008 for my C++ development for a while now, however the <em>insanely crappy</em> intellisense has been bugging me for ages. </p>
<p>I'm looking for an alternative C++ IDE where the intellisense actually is reliable and doesn't vanish between the same variable, in the same scope, just on different lines. Any takers?</p>
http://stackoverflow.com/questions/1813202/building-intellisense-autocomplete-in-javascript2Building IntelliSense/AutoComplete in JavaScriptDavid DeWinter2009-11-28T17:48:09Z2009-12-06T02:56:59Z
<p>I currently maintain an add-on for Firefox that adds a number of capabilities to a forum web site that implements its own markup language, similar to what stackoverflow provides with "Markdown."</p>
<p>I have built an IntelliSense function for this add-on, which, similar to Visual Studio, will pop up an auto-suggest when typing this markup in a textarea. Example:</p>
<p><img src="http://members.lycos.co.uk/suffusion/namfox/faq-1.5/autocomplete-example-2-1.jpg" width="600"></p>
<p>The hardest thing about the implementation is finding the (x,y) coordinates of a key press in a textarea so I can pop-up the IntelliSense window very close to it. The keypress events in JavaScript do not expose these coordinates, so I've had to work around this. Unfortunately I could only find a cross-browser compatible way of getting the y-coordinate, not the x-coordinate. The code for this is located <a href="http://code.google.com/p/namfox/source/browse/trunk/chrome/content/enhancements/auto-complete/AutoCompleteController.js#281" rel="nofollow">here</a> in the _getPopupPoint function.</p>
<p>This works for Firefox because I use some of Mozilla's XPCOM interfaces to get the coordinate. So while this works for Firefox, now that I want to port my add-on to Google Chrome, I couldn't find a way to get the coordinates.</p>
<p>So what I'm asking is twofold:
(1) Is there a better way to get the x-coordinate of a key press?
(2) If not, is there anything I can do in the context of a Google Chrome add-on to get the same data?</p>
http://stackoverflow.com/questions/1850565/intellisense-not-showing-anything-i-write0Intellisense not showing anything I writeRelikie2009-12-05T00:28:34Z2009-12-06T00:40:59Z
<p>I am using Visual C# 2008 express. I'm also running Windows 7. I created a simple form, but Intellisense doesn't show anything I wrote.
I write:</p>
<pre><code>private RadioButton rbtn_sortLocation;
</code></pre>
<p>And then when I write <code>rbtn</code>,Intellisense pops up, but it doesn't show <code>rbtn_sortLocation</code>. But after writing out a whole line, it doesn't complain about an error. How do I get Intellisense to show my methods and such?</p>
<p>Also: This is only happening to solutions I create on this computer. All of the solutions I created on my old XP machine work fine.</p>
http://stackoverflow.com/questions/1852164/hide-usercontrol-properties-from-intellisense0hide usercontrol properties from intellisenseSadegh2009-12-05T13:07:18Z2009-12-05T13:24:40Z
<p>hi, how i can hide usercontrol properties from intellisense in vs?</p>
http://stackoverflow.com/questions/1844732/loading-boost-1-40-0-into-intellisense-in-visual-studio-20050Loading Boost 1.40.0 into Intellisense in Visual Studio 2005?leeand002009-12-04T03:54:18Z2009-12-04T22:40:06Z
<p>Is there any way to get Intellisense in Visual C++ for Visual Studio 2005?</p>
<p>I'm trying to get the Boost libraries to load up with intellisense and in the object browser/class view.</p>
<p>I installed the binary for Windows with the <a href="http://www.boostpro.com/download" rel="nofollow">BoostPro installer</a> (BoostPro 1.40.0 Installer).</p>
<p>I'm not certain that it comes with the source code however, which may be required to make Intellisense work in VS2005. </p>
http://stackoverflow.com/questions/349366/schema-changes-not-updating-in-intellisense-in-sql-2008-ssms2Schema changes not updating in Intellisense in SQL 2008 (SSMS)CJM2008-12-08T12:27:39Z2009-12-03T14:16:59Z
<p>I've notice an issue - it feels like a bug but I suspect a 'feature' - in SSMS in SQL Server 2008.</p>
<p>I have various tabs open, for example an alter table script in one table and a SProc that queries that table in another tab, and when I execute my Alter Table script the changes are not reflected in Intellisense in the other tab.</p>
<p>I can create new queries and the changes are still not reflected in Intellisense. If I open a new SSMS instance, the changes are reflected, until I make further changes, of course.</p>
<p>However, if you over-rule Intellisense and push ahead with your modified tables and code, everything compiles without a grumble (as expected).</p>
<p>Is this a bug? A feature? Is there a setting somewhere that alters this behaviour? I checked in the options but couldn't see anything</p>
http://stackoverflow.com/questions/1371477/visual-studio-intellisense-not-working-in-one-ascx-file2Visual Studio intellisense not working in one .ascx fileGuy2009-09-03T04:47:41Z2009-12-03T02:27:34Z
<p>I have two .ascx files in the same folder in an ASP.NET MVC project.</p>
<p>In one of them intellisense is working fine. In the other it does not work at all. Any ideas? The files are very similar with the same @control definition at the top.</p>
<p>Using VS2008 and C#.</p>
http://stackoverflow.com/questions/1835710/visual-studio-jquery-intellisense-setup-with-other-scripts0visual studio jquery intellisense setup with other scriptsdaniel2009-12-02T20:50:13Z2009-12-02T20:55:52Z
<p>jquery intellisense works fine with standard setup (asp.net mvc)</p>
<pre><code><script src="../../Scripts/jquery-1.3.2.js" type="text/javascript"></script>
</code></pre>
<p>with jquery-1.3.2-vsdoc.js in same folder </p>
<p>if added new script to head like</p>
<pre><code><script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>
</code></pre>
<p>jq intelisense stops working</p>
<p>so how to add new scripts like above and keep intelisense working ?</p>
http://stackoverflow.com/questions/1833957/shortlisting-intellisense1Shortlisting IntellisenseNick Gotch2009-12-02T16:13:03Z2009-12-02T16:30:08Z
<p>Hi,</p>
<p>Does anyone know if there's a way in VS 2008 to shortlist the Intellisense to show only, say, events or properties? Or is there possibly a plug-in for this?</p>
<p>I use Intellisense over going to the documentation for classes a lot and this would just be a quicker way to find a "method to do X" or a "property for Y" without knowing its name immediately.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1283972/losing-mvc-intellisense0losing mvc intellisensefreddoo2009-08-16T10:25:09Z2009-11-30T17:56:13Z
<p>Hi</p>
<p>My intellisense doesn't work in aspx or ascx pages running mvc 1.0
When I save or build it does not show the intellisense, but if I do a clean then it works
it this a bug or am I missing something ?</p>
<p>thanks</p>
http://stackoverflow.com/questions/905005/python-and-intellisense6Python and IntellisenseHarry2009-05-25T01:02:23Z2009-11-26T11:03:32Z
<p>Ok newbee question: <strong>Is there an equivalent to 'intellisense' for Python?</strong></p>
<p>Perhaps i shouldn't admit it but I find having intellisense really speeds up the 'discovery phase' of learning a new language. For instance switching from VB.net to C# was a breeze due to snippets and intellisense helping me along.</p>
http://stackoverflow.com/questions/1797516/how-do-i-implement-intellisense-support-for-a-custom-dlr-language-in-vs20082How do I implement intellisense support for a custom DLR language in VS2008?ArnieZ2009-11-25T15:02:30Z2009-11-26T09:21:58Z
<p>I have just started writing my first language for the .NET DLR.</p>
<p>I would like to know if it is possible to extend Visual Studio 2008 IntelliSense to handle the syntax of a custom DLR language?</p>
<p><strong>EDIT:</strong> I have decided to bypass VS2008 and target VS2010 instead. See accepted answer for more information.</p>
http://stackoverflow.com/questions/1683740/disable-intellisense-in-blend-30Disable Intellisense in Blend 3KShaban2009-11-05T21:26:02Z2009-11-25T18:05:59Z
<p>We are currently building a WPF solution in Blend 3 and Intellisense is extremely slow.</p>
<p>Visual Studio 2008 and 2010 beta 2 do not have any problems, Blend 2 did not have any issues either.</p>
<p>How would it be possible to disable Intellisense in the XAML editor.</p>
<p>Many Thanks,</p>
<p>KShaban</p>
http://stackoverflow.com/questions/1798477/variable-type-hinting-in-netbeans-php0Variable type hinting in Netbeans (PHP)rr2009-11-25T17:16:04Z2009-11-25T17:57:47Z
<p>Just curious if there's a way in netbeans to give type hints for regular variables, so that intellisense picks it up. I know you can do it for class properties, function parameters, return types, etc. but I can't figure out how to do it for regular variables. It's something that would really help in situations where you have a method that can return different object types (like a service locator).</p>
<p>ex something like:</p>
<pre><code>/**
* @var Some_Service $someService
*/
$someService = ServiceLocator::locate('someService');
</code></pre>
<p>Where using $someService afterward, netbeans would provide all available methods defined in the class Some_Service.</p>
http://stackoverflow.com/questions/1798404/sql-server-2008-intellisense-typing-top-brings-up-tables-causes-confusion2SQL Server 2008 Intellisense - Typing 'top' brings up tables, causes confusionBara2009-11-25T17:04:16Z2009-11-25T17:31:14Z
<p>Hey everyone,</p>
<p>SQL Server 2008 introduced Intellisense while writing queries. Problem is, whenever I type in "SELECT TOP" and press space, it replaces TOP with a table named 'Top3_Animations'...</p>
<p>Is there a way to add "TOP" to the Intellisense list? Or to fix this some other way? </p>
<p>Bara</p>
http://stackoverflow.com/questions/1796085/dot-net-3-5how-to-enable-intellisense-while-writting-xml-file-refering-to-define0Dot net 3.5:how to enable intellisense while writting xml file refering to defined schema?sahil garg2009-11-25T10:42:27Z2009-11-25T15:28:08Z
<p>I have defined a xml schema as below</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<xs:schema id="PacketTemplate"
targetNamespace="http://tempuri.org/PacketTemplate.xsd"
elementFormDefault="qualified"
xmlns="http://tempuri.org/PacketTemplate.xsd"
xmlns:mstns="http://tempuri.org/PacketTemplate.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:group name="packetTemplate">
<xs:sequence id="packetTemplateSequence" >
<xs:element name="packetType" maxOccurs="1" minOccurs="1" nillable="false" >
<xs:complexType >
<xs:attribute name="packetCode" type="xs:string" use="required"></xs:attribute>
<xs:attribute name="packetTypeIncoming" type="xs:boolean" use="required"></xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="packetFieldInfo" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="fieldName" type="xs:Name" use="required"></xs:attribute>
<xs:attribute name="fieldNumber" type="xs:integer" use="required"></xs:attribute>
<xs:attribute name="conversionCode" type="xs:integer" use="required"></xs:attribute>
<xs:attribute name="fieldInUse" type="xs:boolean" use="required"></xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</code></pre>
<p>
</p>
<p>now when i write xml file corresponding to this schema i am not able to use intellisense features like it should show all of possible tags in my file?</p>
<p>Beside that what should i do so that this xml file refer the schema file i have defined?
Xml file is as below.</p>
<pre><code> <?xml version="1.0" encoding="utf-8" ?>
<packetTemplate>
<packetType packetCode="601" packetTypeIncoming="123" fieldInUse="true">
</packetType>
</packetTemplate>
</code></pre>
http://stackoverflow.com/questions/1358095/javascript-intellisense-with-dojo-dijit-is-visual-studio-20080Javascript intellisense with Dojo/Dijit is Visual Studio 2008Kyle LeNeau2009-08-31T15:51:39Z2009-11-25T14:39:31Z
<p>I know that Visual Studio 2008 support JavaScript intellisense as I am using it with Jquery. I am wondering if anyone has ever explored how to get other libraries like Dojo and Dijit to work with it as well. I would assume you would have to provide the ///reference tag to your custom code but would still need a vsdoc for visual studio to look in.</p>
<p>Just curious if anyone has tried this or has any suggestions. I might have to hand roll the vsdoc, which might not be too hard based on the api.xml documentation. Thanks for the help!</p>
http://stackoverflow.com/questions/1232188/default-textbox-border-style-and-width0Default textbox border-style and width.maxp2009-08-05T09:42:56Z2009-11-23T07:00:03Z
<p>IE7 and FFox seem to render textboxes very slightly differently by default.</p>
<p>This seems to be fixed by setting their border-style and border-width css properties.</p>
<p>The odd thing is, it seems that out of all the options vstudios intellisense gives me, none of them match?</p>
<p>The closest I've found is</p>
<pre><code>border-width:1px;
border-style:inset;
</code></pre>
<p>Edit: Trying to set the style for a textbox, they all appear to render differently in various browsers.</p>
http://stackoverflow.com/questions/1763366/visual-studio-intellisense-not-showing-methods-on-generic-overload3Visual Studio Intellisense not showing methods on generic overloadJason2009-11-19T13:39:41Z2009-11-19T14:13:31Z
<p>Given the following two interfaces (these are small examples, not my actual implementation):</p>
<pre><code>public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAssertion<T> Evaluate(Predicate<T> predicate)
}
public interface IStringAssertion : IAssertion<string> {
IStringAssertion IsNotNullOrEmpty();
}
</code></pre>
<p>and a static factory that will return the appropriate interface, for example:</p>
<pre><code>public static class Require {
public static IAssertion<T> That<T>(T value) {
...
}
public static IStringAssertion That(string value) {
...
}
}
</code></pre>
<p>I should be able to do the following:</p>
<pre><code>public void TestMethod(SomeClass a, string b) {
Require.That(a).IsNotNull();
Require.That(b).IsNotNullOrEmpty().Evaluate(SomeMethodThatAcceptsString);
}
</code></pre>
<p>This code compiles and will actually run. I can even set up tests that pass, such as:</p>
<pre><code>Assert.IsInstanceOf<IStringAssertion>(Require.That(string.Empty));
Assert.IsNotInstanceOf<IStringAssertion>(Require.That(new object());
</code></pre>
<p>The problem I am running into and the whole point of this question, is that Visual Studio 2005 intellisense is not resolving the differences between the two.</p>
<p>When I type <code>Require.That("...").</code> I should expect to see a list of </p>
<pre>
Evaluate(Predicate predicate)
IsNull()
IsNotNullOrEmpty()
</pre>
<p>but instead I see nothing.</p>
<p>I would really like to keep the same method name for the overloads. I want to keep the generic overload because of the predicate in the Evaluate method of the IAssertion interface.</p>
<p>Also, I know I can do something close to this using extension methods, but that is not an option because I still want to support .Net 2.0 and would like to keep the fluent api.</p>
<p><strong>Updated:</strong></p>
<p>There have been some good answers that involve third party add-ons to Visual Studio. Unfortunately I am not in a position to either install or purchase add-on tools for Visual Studio due to the corporate red tape that I am developing under. (I hate politics!)</p>
<p>I am looking for a code only option that will work in both Visual Studio 2005 and Visual Studio 2008.</p>
<p><strong>Updated:</strong></p>
<p>This works in Visual Studio 2008. Thank you, <a href="http://stackoverflow.com/users/55847/luke">Luke</a>. That only leaves Visual Studio 2005.</p>
http://stackoverflow.com/questions/1749951/c-intellisense-auto-feature-where-is-it-how-to-get-it-on2C++ IntelliSense 'auto' feature? Where is it? How to get it 'on'?Wallter2009-11-17T16:13:32Z2009-11-17T18:30:15Z
<p>I would like to enable the <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">IntelliSense</a> 'auto' feature (like the Visual Studio C# 2008 Express) but I am using Visual Studio C++ 2008 Express Edition and in the Tools > Options > Text Editor > C/C++ (there is no option 'IntelliSense' (like Visual C#). How do I get this feature enabled? I know I can get a shortcut in place (CTRL-space etc...)? But how do I get it automatically (the drop down menu)?</p>