intellisense

How can i enable the intellisense on my c++/cli project?

I am using visual studio 2008 and i have a native c++ project that loads a managed c++ dll, but on the last one, the intellisense doenst work anymore only por the managed code. this project (dll) has a mixed code (native and managed) and if i write only "::" on a clean line, the intellisense gives me the methods inherits from the base c...

What are people replacing the missing C++/CLI Intellisense in VS 2010 with?

I'm about to start a project where I will be likely to use a lot of C++/CLI. I really miss C++/CLI Intellisense in VS 2010. I've heard of some Resharper-like products for C++, but wonder if they provide complete Intellisense. Do they also work with C++/CLI? What are people doing to overcome this limitation? ...

Visual Studio 2008 Intellisense Priority Settings

Is there someway to get VS 2008 intellisense to default to Properties over Classes in a name collision? Example: Within my scope I have a property Foo, but I'm also using a class Foo. When writing code, if I start to type F o, VS2008 intellisense will think I mean the class Foo. I want it to think I mean the property Foo instead. ...

How to replace multiple var keywords by the real types in selected text?

Hi, var keyword in C# is pretty useful, since it is much shorter to write and does not change the compiled program. Hovering over var keyword in Visual Studio shows a tool tip with the "real" variable type behind, which is nice too. But in most of the cases, having full qualified type instead of var makes code more readable. When there...

Possible to keep a method from showing up in intellisense?

Say I have a class and I want to deprecate a method. Is it possible to have that method not show up in intellisense so that people won't be temped to use it? I just want existing code that uses it to continue compiling but hide the method from view at the same time. ...

How can I skip the closing quotation mark when typing in the Visual Studio xml editor?

I like that quotation marks are automatically inserted in the Visual Studio xml editor, but I haven't yet found an easy way to get past the second quote without moving my hand over to the cursor keys or hitting End. Is there an easier way to skip past the second quote when the value is a string (Intellisense will skip the quote if the va...

Visual Studio 10, JavaScript intellisense inside javascript.js file, and where is the MicrosoftAjax-vsdoc.js

I can get javascript intellisense going from and aspx or master page ie <script src="../../Scripts/jquery-1.4.1-vsdoc.js"type="text/javascript"></script> <script type="text/javascript"> $.isFunction( </script> gives me a drop down in vs2010. I do all(most) of my js coding inside a js file. How do I get intellisense drop do...

outlaw string in c# using intellesence

Hi, I often type string in c# when actually I want to type String. I know that string is an alias of String and I am really just being pedantic but i wish to outlaw string to force me to write String. Can this be done in ether visual studio intellesence or in resharper and how? ...

Why and when there are things I can not do in CLASS SCOPE in C# ?

hi, well... I'm confused about what can I do and what I can't do in CLASS SCOPE. For example ========================= class myclass { int myint = 0; myint = 5; *// this doesnt work. Intellisense doesn't letme work with myint... why?* void method() { myint = 5; *//this works. but why inside a method?* } } ========...

Warning or info box in NetBeans 6.9: "x" is not a known variable in the current context

I'm using NetBeans IDE 6.9 (Build 201006101454), and wrote this simple Java class (that doesn't do anything): public class SomeClass { int someInt; } The variable "someInt" shows up in green. When I highlight and hover over it, a tool tip box appears that says: someInt = >"someInt" is not a known variable in the current con...

visual studio 2010 intellisence tooltip delay

Intellisence displays tooltip when going through list of methods. This tooltip displays with ~500ms delay. It's very annoying when I'm need to find certain method. Is there any way to make this tooltip to display immediately? ...

Visual Studio 2010: Editor stops working

I've got this very odd bug that appears to be a quirk in Visual Studio 2010: Sometimes, when moving the cursor into double quotes of a CSS style="" attribute the cursor refuses to move. I can't type anything, and the keys that respond are the UP/DOWN cursor keys and the DEL key (but not BACKSPACE). Typing does nothing, but pushing LEFT/...

ASP.NET Markup Intellisense not working in Visual Studio 2010

When I type < in the Markup Mode of Visual Studio 2010, I don't get any server-side controls (ie. ), I just get a list of standard HTML controls. This used to work, but one day just stopped. Why could this be? P.S: I'm a VB.NET Programmer, and the .vb files intellisense is working fine. ...

Implementing Visual Studio Intellisense

I'm trying to add Intellisense to C# code editor based on the richtextbox control. So far, I've got it parsing the entered text to find all variables and their types (works well). The drop down box works well. What I can't get is a proper list of options for the drop-down list box. How can I get the following list, programmatically: ...

Are there any controls to edit text with intellisense?

Are there any .net controls (hopefully WPF) to enter queries based on application rule engine (or language definition)? Something like SQL with intellisense or Jira advanced filter? In other words i would like to allow a user to enter something like this into a text area (type='apple' and color='green' and quantity>10) or (type='tomato...

visual studio 2010 - control source keeps disappearing

Hi, From time to time i cannot see the ascx control source (not code behind). The only way i can really reproduce this is: If you have two controls and click from ascx source to ascx source (to and from each control) rapidly then you will eventually get one of the controls showing nothing in the source. The way to fix this (annoying ...

Visual Studio 2010 intellisense colors

Is it possible to change the color of intellisense in Visual Studio 2010. As you can see in this screen shot. Its virtualy impossible to see the types of the parameters because they're displyed with a white foreground colour on a grey background. ...

C++ Intellisense with descriptions

Hello is there some IDE or some plugin or any other way that provides a C# Like intellisense for C++ ? like not just only the parameters & overloads but also a small description eg : cout : outputs message to ... ;; just like in C#. & thanks ! ...

Is there a way to change the order of constructors listed in IntelliSense in Visual Studio?

I have defined a class with multiple constructors so that the underlying interfaces are immutable once the object is instantiated. I would like one of the constructors to be the "default" constructor for when a user types the following in Visual Studio: var obj = new MyClass( Dim obj As New MyClass( Currently when I go to instantiat...

Hide Equals and ReferenceEquals

I am creating an internal class to provide a construct for the Contract pattern. using System; using System.Runtime.Serialization; namespace DCS2000.Common35.Core { public class Assertion { public static void Ensure(bool test) { if (!test) { throw new PreconditionException("Precondition test fail...