intellisense

Visual Studio 2010 crashes when trying to set CssClass property

Many times when I'm editing a .aspx file and type CssClass=, the Visual Studio IDE hangs then crashes with option to restart. Clearly this is happening while VS is trying to populate the Intellisense with available classes. Nine times out of ten I already know what class I want. Is there a way to disable Intellisense just on CSS classes?...

Why is there no intellisense in ASP.Net MVC 2.0 when assigning Model values to JavaScript?

I'm trying to add some Model properties into my JavaScript within my content page: $(document).ready(function () { createPager(1, <%=Model.TotalPages %>); createUnprocessedPager(1, <%=Model.TotalUnprocessedPages %>); }); Does anyone know if this is by design? Are you not meant to combine Model properties with JavaScript? Or is...

Devexpress intelisense in markup

Hello, Ive got problem with intellisense in markup for example: When I type <dxwgv:ASPxGridView ID="grid" runat="server"> <Columns> < -- here I hit ctrl + space and only normla html tags are shown: a, abbr ... -- But I would like to have available columns instead :/ </Columns> </ dxwgv:ASPxGridView> Thanks for hel...

LINQ no longer has intellisense in views

Ever since we upgraded to .Net 4.0 and VS2010 (from 3.5 and 2008) we can no longer get intellisense on LINQ to kick in when working in our views. Before the upgrade everything was working fine, but after the upgrade it's actually listed as an error when we try to use things like .Where() on a collection. Oddly it will compile fine and ru...

jQuery UI intellisense?

Where can I grab the latest and greatest intellisense file for jQuery UI 1.8.4? ...

Visual Studio 2010 Intellisense slows down everything

Hey. I have the issue with Visual Studio 2010, after a while, running exceptionally slowly and slowing everything else down with it. I'm meaning: Most other open windows become unresponsive Typing is delayed Build times increase 10-fold Saving takes forever I am sure this is an Intellisense issue; disabling it solves everything, and...

Why is where highlighted?

In VS 2010 C++ when I type where it gets highlighted, why? It is not a keyword so what's the reason? Thanks. ...

Visual Studio 2005 SP1: Manual intellisense update

Is there a method to manually update the intellisense when the project has been loaded? I have a huge project loaded and I won't be able to reload the entire project just to update intellisense. Thanks. ...

Did Intellisense quality and stability get improved in MSVC++ 2010?

Two separate questions really, for those of you who have upgraded from 2008 to 2010: Does intellisense work much better in this version in terms of completeness? Does it still suffer from corrupted NCB files and other performance/stability issues? ...

Intellisense for member override in VB.Net 2008 Express Edition.

If I override a member (e.g AutoSize in the Button Class), then the intellisense no longer appears in the editor, forcing me to re-decorate the property. Is there an option somewhere that I need to check? ETA: Here's a code sample: Public Class MyButton Inherits Button Public Overrides Property AutoSize() As Boolean G...

How to get Intellisense to display the meaning of an enum value

I'm wanting to know to get Intellisense in Visual Studio 2005 to display the meaning of individual enum values for a VB.NET project. This already happens for enums that are a part of the .NET library: Is this possible? If so, how would I need to comment my enums to get this to happen? ...

Intellisense ctrl+space in visual studio 2010

I'm writing a small program using CLR console application and when I write something it doesn't give suggestions, although i press (Ctrl+Space). I'm using visual studio 2010 can any one help me? ...

Does Netbeans support vs-doc syntax for providing Javascript intellisense?

I've been documenting my Javascript with v-doc comments, as this works really nicely with Visual Studio. I'm considering giving NetBeans a go, as it apparently has very nice intellisense/code completion. Will NetBeans support vs-doc comments? If not, then by what means does NetBeans provide intellisense for Javascript files? ...

How to get jQuery Visual Studio 2010 IntelliSense to work inside a noconflict wrapper

I added the vsdoc jquery reference in my js file: /// <reference path="../jquery-1.4.1.vsdoc.js" /> This works fine, but once I write inside a no conflict wrapper... (function ($) { ...here... })(jQuery); ...IntelliSense does not work. Why is this, and is there any way to solve this? ...

How to enable Intellisense for Gtkmm in Anjuta?

Qt Creator has excellent intellisense support for anything you want! Does Anjuta have intellisense? Can I enable it for Gtkmm? I am building Gtkmm project but I do not get intellisense for Gtkmm!! ...

how to remove asp.net webforms tag from visual studio 2010

when i write mockup in visual studio i found in intellesense that some tags like asp:tagname but in mvc i don't want it. so are i can remove it then when i write mock up then i not see this webform tags in intellesense ...

Visual Studio 2010 Express for Windows Phone - IntelliSense problem

I have some problems with IntelliSense, before update IntelliSense auto-select corresponding type, f.e class Test { } //Main { Test t = new //<- there IntelliSense automatic select 'Test' type, now IntelliSense select 'Test' but I have to press 'down' before 'enter' if I want it } ...

No more Intellisense for ASP tags visual studio 2010

Hi there, I'm not getting intellisense for asp tags anymore in websites or web applications. There is a check mark for the following: Tools->Options->Text Editor->C#->General->Auto list members Tools->Options->Text Editor->C#->General->Parameter information Tools->Options->Text Editor->C#->Intellisense->Show completion list after a c...

Javascript Intellisense in ASP.Net Usercontrols

As you will all probably be aware you can reference external Javascript files in Visual Studio 2010 using the following directive. /// <reference path="MyExternalFile.js" /> Great! Directives to external Javascript files that exist in masterpages are automatically transferred to content pages. Again great! However how can you create...

Finding and using hidden properties(such as DisplayRectangle)

In many code examples I have found the DisplayRectangle property of a Control object being used. However this property does not appear in the intellisense popup, neither does it get any syntax highlighting, but it does compile and work as expected. Should I use this kind of Property? How can I find out about more of them, can they be a...