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