intellisense

Jquery and Intellisence in VS 2008 with hotfix and SP1

I followed Scott Guthrie's instructions as outlined atL http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx but no avail: intellisence still doesn't work. Any tips? ...

Using Intellisense in Visual C++ 2008 Express. Intellisense for one project not available when editing file in another project.

I have a multiple vcproj solution going and it seems that no other project's intellisense information is available when editing a file in another project. However when I'm within a file in a project, all intellisense information is available for that project. Any idea why? ...

visual studio intellisense error

template <typename T> class Test { friend Test<T> & operator * (T lhs, const Test<T> & rhs) { Test<T> r(rhs); // return r *= lhs; } } 4 IntelliSense: identifier "T" is undefined why is T defined on line 3 but not line 4? i mean i guess its not a real error just an intellisense error... it works anyway but is t...

Intellisense for C# User Control in VB.NET project

Hello, I have created a C# user control which I want to use in VB.NET .. the control works fine, but in VB.NET the Intellisense does not show any of the C# user control function descriptions (in summary xml doc tag). If I use the same control in a C# project the Intellisense show each function's description as intended.. is this norma...

C++ IntelliSense 'auto' feature? Where is it? How to get it 'on'?

I would like to enable the IntelliSense 'auto' feature (like the Visual Studio C# 2008 Express) but I am using Visual Studio C++ 2008 Express Edition and in the Tools > Options > Text Editor > C/C++ (there is no option 'IntelliSense' (like Visual C#). How do I get this feature enabled? I know I can get a shortcut in place (CTRL-space etc...

Visual Studio Intellisense not showing methods on generic overload

Given the following two interfaces (these are small examples, not my actual implementation): public interface IAssertion<T> { IAssertion<T> IsNotNull(); IAssertion<T> Evaluate(Predicate<T> predicate) } public interface IStringAssertion : IAssertion<string> { IStringAssertion IsNotNullOrEmpty(); } and a static factory t...

Dot net 3.5:how to enable intellisense while writting xml file refering to defined schema?

I have defined a xml schema as below <?xml version="1.0" encoding="utf-8"?> <xs:schema id="PacketTemplate" targetNamespace="http://tempuri.org/PacketTemplate.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/PacketTemplate.xsd" xmlns:mstns="http://tempuri.org/PacketTemplate.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"&g...

How do I implement intellisense support for a custom DLR language in VS2008?

I have just started writing my first language for the .NET DLR. I would like to know if it is possible to extend Visual Studio 2008 IntelliSense to handle the syntax of a custom DLR language? EDIT: I have decided to bypass VS2008 and target VS2010 instead. See accepted answer for more information. ...

SQL Server 2008 Intellisense - Typing 'top' brings up tables, causes confusion

Hey everyone, SQL Server 2008 introduced Intellisense while writing queries. Problem is, whenever I type in "SELECT TOP" and press space, it replaces TOP with a table named 'Top3_Animations'... Is there a way to add "TOP" to the Intellisense list? Or to fix this some other way? Bara ...

Variable type hinting in Netbeans (PHP)

Just curious if there's a way in netbeans to give type hints for regular variables, so that intellisense picks it up. I know you can do it for class properties, function parameters, return types, etc. but I can't figure out how to do it for regular variables. It's something that would really help in situations where you have a method tha...

C++ IDE with good intellisense

So I've been using Visual Studio 2008 for my C++ development for a while now, however the insanely crappy intellisense has been bugging me for ages. I'm looking for an alternative C++ IDE where the intellisense actually is reliable and doesn't vanish between the same variable, in the same scope, just on different lines. Any takers? ...

Building IntelliSense/AutoComplete in JavaScript

I currently maintain an add-on for Firefox that adds a number of capabilities to a forum web site that implements its own markup language, similar to what stackoverflow provides with "Markdown." I have built an IntelliSense function for this add-on, which, similar to Visual Studio, will pop up an auto-suggest when typing this markup in ...

Shortlisting Intellisense

Hi, Does anyone know if there's a way in VS 2008 to shortlist the Intellisense to show only, say, events or properties? Or is there possibly a plug-in for this? I use Intellisense over going to the documentation for classes a lot and this would just be a quicker way to find a "method to do X" or a "property for Y" without knowing its n...

visual studio jquery intellisense setup with other scripts

jquery intellisense works fine with standard setup (asp.net mvc) <script src="../../Scripts/jquery-1.3.2.js" type="text/javascript"></script> with jquery-1.3.2-vsdoc.js in same folder if added new script to head like <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script> ...

Intellisense not working

Intellisense is not working correctly for new user Controls. Any class in the same namespace as my new class is not visible in intellisense. It compiles without any problem. I'm using VS 2008. ...

Visual Studio 2008 Intellisense with struct keyword

I am using visual studio 2008 express edition. A normal win32 console C project with the code below: int main(void) { struct _addr_info { char name[30]; char street[40]; char city[20]; char state[3]; unsigned long int zip; } addr_info; addr_info.zip = 12345; return 0; } Generally for structures intellisense will list the mem...

Loading Boost 1.40.0 into Intellisense in Visual Studio 2005?

Is there any way to get Intellisense in Visual C++ for Visual Studio 2005? I'm trying to get the Boost libraries to load up with intellisense and in the object browser/class view. I installed the binary for Windows with the BoostPro installer (BoostPro 1.40.0 Installer). I'm not certain that it comes with the source code however, whic...

XSLT Intellisense in Visual Studio 2008

I have an XML file which in addition to it's standard XML schema allows the use of XSLT. I am including the correct namespace for XSLT (xmlns:xsl="http://www.w3.org/1999/XSL/Transform") however I am not receiving Intellisense for XSLT when I start typing xsl: tags. Is it possible to turn this on? When I edit XSLT files it works absolut...

Intellisense not showing anything I write

I am using Visual C# 2008 express. I'm also running Windows 7. I created a simple form, but Intellisense doesn't show anything I wrote. I write: private RadioButton rbtn_sortLocation; And then when I write rbtn,Intellisense pops up, but it doesn't show rbtn_sortLocation. But after writing out a whole line, it doesn't complain about a...

hide usercontrol properties from intellisense

hi, how i can hide usercontrol properties from intellisense in vs? ...