intellisense

Javascript intellisense with Dojo/Dijit is Visual Studio 2008

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

IntelliSense in VB Xml literals

Hi, is there a way to enable IntelliSense for XML literals in VB9 (VS 2008)? The ideal source of IntelliSense is an XSD document, but I can use anything else format to do it. Thanks ...

Visual Studio intellisense not working in one .ascx file

I have two .ascx files in the same folder in an ASP.NET MVC project. 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. Using VS2008 and C#. ...

ASP.NET - AJAX request via jQuery to get dynamic page and insert as table row

Hello, I'm doing a jQuery AJAX request to get an aspx page in my project and inserting it into a table. The aspx page contains a single table row (as in, it starts with tr and ends with /tr). Because of this, I cannot add anything before or after those tr's. My problem is the following: If I try to type in < asp: into Visual Studio ...

Visual Studio's "auto-resolve" feature doesn't work for extension methods - what now?

I love the "Resolve" feature in visual studio. Typical scenario: Type in Debug Type . Notice that no intellisense appears Right-click Select Resolve Choose using System.Diagnostics or System.Diagnostics.Debug Beautiful. Use it all the time. Extension method scenario: Type in var maxNumber = new int[] {1, 2, 3, 4} Type . Notice th...

Intellisense does not recognize Sharepoint.WebControl elements in a control template

I am working with a project generated by the VS2008 Sharepoint template (VSeWSS). Currently, when working in the ASCX files that I have, IntelliSense does not recognize the imported namespaces. I'm uncertain what to do to address this. Note: Per edit below, importing SharePoint.WebPartPages works fine, it's just SharePoint.WebControls ...

Word Completion C# VS2010

Hello. I am having some issues with word completion in VS2010 running in windows 7. I have no word completion in C#, programming a web application. The word completion works fine in html, but in code behind i need to use (alt + right) to see the completion options. Already checked the preferences and is all okay, also tried ctrl + alt ...

How do I get intellisense(code insight) features like of Jcreator in an IDE of linux platform ?

I previously programmed a lot in JCreator, but since I moved to ubuntu. I miss my Jcreator more than anything. Beside Eclipse or Netbeans, are there some lightweight software that does my task. Tried already gedit, jedit, scite, geany etc. with APIs plugins. But I can't find anything like Jcreator ? I just have 256 MB SDRAM to spare in ...

Mimic Intellisense

Hi, I want to find C# in a string of c# code, with its parameters. Like in Visual C# as you type, in the intellisense you can find methods you've written inside the text area, I want to accomplish this basically. As the user is typing, and my intellisense pops up, I want to populate my intellisense with the new/edited methods that are in...

Hiding GetHashCode/Equals/ToString from fluent interface classes intellisense in Visual Studio for C#?

I have a fluent interface for an IoC container registration process, and this contains some classes that are used to build up the registrations. For instance, I can do this: builder.Register<IFoo>().From.ConcreteType<Foo>(); However, at each step after a dot, intellisense pops up showing the four standard methods from the Object clas...

Is there a MATLAB editor/plugin/version with better code completion?

Comparing Visual Studio code completion with MATLAB R2008b 7.7 there are a few important features missing in the last one: Local variables completion Function, for, if auto ENDing But Visual Studio doesn't support MATLAB code. Is there any MATLAB plugin, editor or version with a better code completion? ...

DIY intellisense on XPath - design approach? (WinForms app)

I read the DIY Intellisense article on code project, which was referenced from the Mimic Intellisense? question here on SO. I wanna do something similar, DIY intellisense, but for XPath not C#. The design approach used there makes sense to me: maintain a tree of terms, and when the "completion character" is pressed, in the case of C...

Can I get intellisense in powershell?

Just starting out with powershell, I would love to have intellisense support for writing powershell scripts. Tab-completion works great so you would think it would exist somewhere, but the only thing I can find when Googling is an article from 2007 - hardly up to date. Is there an extension somewhere that gives you this ability? How a...

jquery + intellisense + vs2008 pro fails to load

i use win7 + VS2008 PRO to edit my blog (php) and i can't seem to get this work. i tried installing the patch (inteli hot fix) but it says no need to install (i have pro sp1) this is the folder structure: js common.js jquery-1.3.2-vsdoc.js jquery-1.3.2.js i working on a blog (not asp or html) so i created a common.js file th...

Visual Studio intellisense for custom app.config settings?

I'm working with custom sections in app.config, and would find very useful the same intellisense facilities as exist for the standard settings. I assume I'd have to supply a schema somewhere, but can't work out if/where. Is this possible? ...

Visual Studio 2008 losing intellisense for ASCX with CodeBehind (but works for CodeFile) ???

I have the following definition at the top of my .ASCX file: <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ArticleView.aspx.cs" Inherits="MyNameSpace.ArticleView" %> In that control I make use of <%= %> blocks to refer to members that I've declared in the code-behind file. If I compile and deploy the control, it works ...

How to get Intellisense to only show the Properties or only the Events etc

Hi, I'm sure I'm not the only one who finds it a bit annoying when scanning say Events in Intellisense and having to wade thru all the Properties etc as well. Is there a way/plugin or something to allow the selection of only Events, only Properties etc? That would really be a big plus! Thx in advance for any help. ...

JScript intellisense with ScriptManagerProxy

Hi I've got a problem making my ScriptManagerProxy expose registered scripts. When I add a ScriptManager, everything works as expected and the scripts are reflected correctly, but whenever I change it to a ScriptManagerProxy, every script, even the MicrosoftAjax.js, dissapears from the intellisense. I believe there is some sort of bug ...

Object initializers - VS intellisense turns "new" into "new object"

Let's say I have a function that takes an object as a parameter and returns a string... public string Foo(object values) { // return a string } When working in Visual Studio 2008 (ASP.NET MVC Web Application), I try to pass an object intializer to this function like so: string x = Foo(new { x = 1, y = 2 }); While I'm typing this ou...

Turn off Intellisense in VS 2008 for a single project

I have a project with about 1000 classes in it (no, there is no way to conveniently break this project into multiples). Just loading the project takes about 20 minutes as intellisense slowly chugs through all the classes, and eats almost 1gb of memory. Is there a way to turn off Intellisense for a single project, but keep it for all ot...