intellisense

WinForms TreeView.Sorted Property and VS 2008 Object Browser

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? ...

IntelliSense doesn't work in VS 2008

Can anyone help me figure out why IntelliSense doesn't work in VS 2008? ...

WPF XAML Intellisense doesn't work correctly for custom routed event handlers

I defined a custom routed event with the following constructs (names changed): public class MyRoutedEventArgs : RoutedEventArgs {...} public delegate void MyRoutedEventHandler(Object sender, MyRoutedEventArgs args); public static readonly RoutedEvent MyEvent; MyClass.MyEvent = EventManager.RegisterRoutedEvent("MyE...

Why is my visual studio 2008 project read-only

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 "The IntelliSense information will not be available for .VC++ projects because the Intellisense database file Loc...

Intellisense with single source file in multiple projects

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. How do I get Intellisense to switch which project settings it use...

Can Visual Studio's C# intellisense be given a hint to display a certain method overload first?

Hi everyone, I have two methods that are overloads of each other public class Car { public int GetPrice(string vinNumber) { string make = Database.GetMake(vinNumber); // expensive operation string model = Database.GetModel(vinNumber); // expensive operation int year = Database.GetYear(vinNumber); // expensiv...

Uninstall of CodeRush and ReSharper - Intellisense Not Working

Install order: Visual Studio 2008 ReSharper Uninstall ReSharper CodeRush with Refactor Pro Uninstall CodeRush with Refactor Pro Now my intellisense doesn't work. Any settings I should look at before I try a uninstall / reinstall? I'm sure there must be something buried in the Options that these plug-ins hook into or override. ...

Intellisense support in Visual Studio 2008/2010 for jQuery closures {

I'm trying to get Intellisense to correctly work for closure. As a plugin author, I always use a closure to create an isolated environment for my plugin code: (function($) { // code here })(jQuery); But the problem here is that Intellisense doesn't pick up that jQuery is being passed in the execution of the function. Adding $ = jQue...

ASP.NET Controls are not coming in codebehind intellisense

I am having an aspx page where i have added one asp.net text box control with ID and RUNAT attribute. But In codehehind i am not seeing this control's name in the intellisense. My page directive in aspx is as follows <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MyProject_UI._Default" %> I Am us...

Ruby editing with intellisense

Hi there, Currently I am exploring the world of ruby. Playing around in the irb you get nice intellisense for like 5.<tab><tab>. I tried many editors/IDEs (mainly gedit, vim, radrails) with a couple of plugins. I kind of do not like the bloated eclipse-style environment but as far as I fount out it is the only one providing intellisense...

Prototype / Scriptaculous intellisense in Visual Studio

Hello, How do I get intellisense for Prototype / Scriptaculous like we get for jQuery in Visual Studio?? Thanks... ...

Intellisense for dynamic languages

Hi all! I am looking for various approaches for supporting some level of intellisense on a dynamically typed language. Since intellisense information is based on type information, there are inherent difficulties in implementing this for dynamic languages. Do you know any algorithms or methods to implemented it? ...

Code auto completion in an IDE

I use Microsoft’s Visual Studio, and find the IntelliSense code auto completion feature very useful. Are there any alternative open source IDEs that offer a similarly useful feature? How do they compare? ...

merged DLLs, Intellisense not picking up separate XML doc files

I use ILMerge to merge several of my C# project DLLs into a single DLL for the whole solution. I have each project produce a .XML file of its documentation for Intellisense, and I'm having trouble getting those comments to show up when I try to use my merged DLL as a reference in another solution. I have these files all in the same dir...

Where is Visual Studio autocomplete for JQuery 1.4?

I can't find the Visual Studio autocomplete file for JQuery 1.4. Googling for jquery-1.4-vsdoc or jquery-1.4.min-vsdoc turns up nothing. ...

I can't Publish my website anymore.

Hi I am trying to publish my site from Visual Studios 2008 Web Developer SP1. I do first a clean build then I rebuild it. I then go and try to publish it. I get one warning that seems to make it fail Warning 1 Error updating JScript IntelliSense: C:\Users\bob\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\25YI0...

intellisense dissapeared in eclipse, how to get it back

I don't know what happened but the intellisense just dissapeared, anybody knows how to get it back ? I tried creating new projects, rebooting, doesn't help ...

How can I get Geany to show me the methods a library has when I press the '.' key?

In visual studio, I could just press ctrl+spacekey and the methods appeared. In Geany is there a way for me to get this functionality? ...

Filter Visual Studio (or ReSharper) Intellisense by type

Is there a way to filter the Visual Studio Intellisense by type? Example: when I'm using a control such as Infragistics' XamDataGrid there are a seemingly endless number of fields, properties, events and methods. I'd like to be able to filter the intellisense by type, i.e., show me only events. I've found these suggestions on the JetB...

Visual Studio intellisense filtering

Hey does anyone know if theres a way in Visual Studio to filter the intellisense dropdown list based on what you have already typed. e.g. say under MultiScaleImage there is a UseSprings property. I type in msi.springs and in the intellisense menu it would filter out anything that does not contain springs. Flash Develop has this functio...