intellisense

Editor for html/css/php/js/jQuery

It would be great to have something like intellisense or code auto-complete for php/js/jquery.. I'm using Windows, and I've tried only NetBeans so far, can you suggest another all-in-one IDE ? Thanks in advance, best regards. ...

How can I get intellisense in PHP/Eclipse on custom objects pulled out of array in foreach loop?

I have a collection of custom objects (Podcast) in an array. When I use a foreach loop to iterate through this collection, I don't have code completion on the variable that contains the object pulled out of the collection (as I would in C#/VisualStudio for instance). Is there a way to give PHP a type hint so that Eclipse knows the type...

IntelliSense rendering XML comments improperly from referenced assembly

I have an assembly with all classes decorated with XML so that full IntelliSense is provided. This works fine in my development environment (Visual Studio 2008 Express and VB.NET), but if I create an entirely separate project and import the dll in, the IntelliSense appears but it is not rendering properly. For instance if I have someth...

instellisense not working for just one solution (VS 2010 express for phone edition)

[Edited] intellisense is not working just for just one XAML file in a particular solution (the solution compiles and runs fine) it works on every other project and other files.. can someone point me to instructions on how to fix it ? I am using Visual studio 2010 express edition for windows phone. ...

In VS2010, how to get VB.NET enum values to autocomplete without typing the enum type first?

In VS2008, you could write, for instance, dim enumValue as MyEnum enumValue = .. and then as soon as you typed the =, you'd get a list of possible values of MyEnum. With VS2010, you have to type dim enumValue as MyEnum enumValue = MyEnum. ... before getting the list on typing the final . This makes for a lot more typing and seem...

Visual Studio Intellisense crashes due to macro file

In Visual Studio 2005, I have a .h file with preprocessor macros in it. They are apparently too complicated for Visual Studio's Intellisense because they make Visual Studio crash if they are present whereas it works fine if they are not. Does anyone know of a way to prevent Visual Studio parsing the file for Intellisense but still includ...

No intellisense on aspx.cs page?

For some reason, VS2010 refuses to do automatic code completion on ASPX.CS files. Any other file works just fine, but not these. I can do CTRL+SPACE, that works, but it should be automatic. Is there a setting to control this? ...

Is there any software with intellisense for Javascript/jQuery?

I want to start learning jQuery, but there's so much you can do with it. I'm interested in using PHP as well. I understand that Visual Studio has intellisense for Javascript, but isn't that for ASP.NET? Can you build PHP applications in Visual Studio? ...

How to make visual studio intellisense member description not disappear after ~10 seconds?

I have Visual Studio 2010 and Windows XP. ...

Intellisense doesn't work in one CPP file only

I've a weird situation in VC++ 2008 (unmanaged regular C++), where one source file has no intellisense at all... no tooltips when hovering over vars, no autocomplete, nothing. But the rest of the source is working fine and this file isn't anything special. I deleted the NCB file when things were a bit broken elsewhere and it all started ...

Does compiler warnings cause intellisense to stop working?

I am using Visual Studio 2010 (c++), and Intellisense has stopped working. I've read that an error in the code can cause this, but my code compiles fine, I only have some warnings about a deprecated function, can this cause intellisense to stop working? I tried deleting the .ncb file, but is not being regenerated. Also I read here that ...

VS2010 Intellisense: make it autocomplete every word ?

hello i'm using VS to write JavaScript lately. before that i was using notepad++. the auto-completion in np++ deals with every word in the current document. but the one in VS only deals with variables and functions and so. what i'm looking for is every word completion. meaning that if i write div.id ="anotherDiv"; and then later write do...

Error while updating jQuery intellisense on 64 bit

Hi, I am running VS2008 SP1. I have jquery-1.4.2.js and jquery-1.4.2-vsdoc.js files with me. But I am still getting error: "Object doesn't support this property or method @ 862:1" The thing is that I was unable to install the update patch "VS90SP1-KB958502-x86" as I am running 64 bit and when I try to run the patch I get "...not valid w...

Are there any Intellisense-like autocomplete jQuery plugins?

I am building a page that will require some sort of Intellisense/Autocomplete, is there any jQuery/Javascript plugins that you know of? We are currently using a control similar to a normal autocomplete, where suggestions appear below the text area after writting a period (we then get the current token and do reflexion to get available m...

Free/Inexpensive Visual Studio 2010 Intellisense Extensions That Search Namespaces for Methods?

Is anyone aware of a free or < $25 VS2010 extension that suggests namespaces based on partial information? E.g., you can type "bar()" without knowing where it is and intellisense will prompt you with "Foo.bar()". IIRC, ReSharper does something like this, but it exceeds my preferred expenditure. ...

Visual C++ Express - Dozens of vcpkgsrv.exe

I don't want to disable IntelliSense, but I don't see any other solution. I have Visual C++ v10.0.30319.1, Max Cached Translation Units = 2. But still, dozens of vcpkgsrv.exe processes are spanned, consuming lots of memory (and rendering the computer unusable). Windows 7 Pro. Any solution that you know of? Thanks. ...

intellisense not properly working visual studio 2008 for Visual C++ and MFC environment

I am working in vc++ of Visual Studio 2008. In my project (VC++), I could access the INTELLISENSE only when i press CTRL+SPACE. it doesn't work automatically as like any other project ( i.e. C#, VB .Net). so what should i do to work with the intellisense efficiently? ...

IntelliSense doesn't work for Resources.resx file in WPF/C# project, VS2010

In my WPF 4.0 desktop-based application in order to localize my application (e.g. English & French localizations) I'm using Resources.resx file, where I type dialog name (ID) and its value for English and French localization. Everything works great, except one thing — IntelliSense of Visual Studio 2010. Let's say, I have a button: <But...

Custom Android Widget and Eclipse Intellisense

I am in the process of putting together a little Android app. I have created a couple of widgets by extending the ImageView and ScrollView widgets. The problem that I am having is not with the code itself (i.e. everything runs wonderfully) but rather with the Eclipse "intellisense" in an XML layout. If I am using the native android wi...

VB.NET: Intellisense on items declared as 'Object'

I have a shared Queue that I use to dump various messages contained in different Classes, so I have its type as Object. The prob is, the messages are dequeued and processed but since the message type vary, Intellisense doesn't show the classes properties or methods. How does one find get Intellisense to work to? ...