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?
...
Can anyone help me figure out why IntelliSense doesn't work in VS 2008?
...
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...
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...
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...
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...
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.
...
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...
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...
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...
Hello,
How do I get intellisense for Prototype / Scriptaculous like we get for jQuery in Visual Studio??
Thanks...
...
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?
...
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?
...
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...
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.
...
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...
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
...
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?
...
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...
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...