intellisense

Bug in VB compiler and/or IntelliSense in both C# and VB WRT out-of-scope Property Setters and ByRef fn() Parameters

I've noticed some seemingly weird issues in Visual Studio 2008 (.NET 3.5) and also in Visual Studio 2010 Beta 2 (.NET 4.0). These issues may have existed in prior versions as well. Maybe they are not an issue, but either way, I would like to see if there is are logical explanations for these before I submit a report on Microsoft Connec...

Have asp.net base page property show up in @Page attribute

Hi all, I have create a list of public properties in our custom page. However, when I want to assign the property on any aspx file, it does not show in intellisense and when I use it it said it is a invalid attribute of element "Page". So, 2 question. How do I make it such that it shows up in intellisense? Can I set any localize var...

How do I get the dropdown menu to see all the functions in vs2008 When using VBSCRIPT

I wanted to know how do get the dropdown menu that shows all the function so I can browse easily between them in visual studio 2008 when coding in vbscript. I have it in C++ but I have no idea of how to get it to show for VBScript. Thank you. ...

Does <include> comment tag suppress intellisense?

I was playing around with the idea of using Visual Studio's < include > tag to store some or all my code documentation separately from it's source, but when I tried creating a test xml file and pointed at it using the include for some of my methods, I discovered that intellisense didn't work for those methods. Is the include tag for xml...

Which is the best linux program for a C++ programmer?

I have always wanted to step away from windows and go completely linux, but the only thing that prevents me are the programs. The problem is that I am use to the intellisense in Visual Studio 2008. I have looked for many alternatives to a program which displays the functions as visual studio does, but none seem to have what I am looking ...

Visual Studio Intellisense help for keywords

Hi, Is it possible to add intellisense help to keywords of the c# language? There are lots of keywords that could use an explanation and might also help beginners get a better insight. ...

Netbeans Intellisense for Rails

Has anybody figured out a way to make the Netbeans intellisense for ruby and rails better? It either has too many options in the list (which I understand is a problem since it is a dynamic language). Or it has no options in the list, as if it is not dynamic enough to find everything. Are there any hacks to make it better, or is this j...

How to make Xml comments in VS 2008 work with Intellisense for enumerations?

It appears that not all Xml-Commenting shows up in Intellisense, but perhaps I am not doing it correctly? Anyway, I am trying to make it so that individual enumeration members in an enumeration list show up in intellisense with descriptive text. For example, in the String.Split method, the third overload takes the StringSplitOptions en...

Editing markup of large controls/pages in Visual Studio 2008 pegs one core of CPU

When editing a markup file (javascript mixed with html and ASP.NET tags) of several hundred lines in Visual Studio 2008, the devenv process seems to lock up one core of my CPU. The excessive processing only occurs while I am typing, so it is obvious that my code is being parsed and analyzed. This occurs even when I am editing some javasc...

LINQ intellisense stopped working

What happend to my Intellisense?? When I type a line like this ... Dim users = (From u In Membership.GetAllUsers Select u.UserName) ... I get (almost) no Intellisense when I get to the Select u. part. Only Equals, GetHashCode, GetType, ReferenceEquals and ToString appears. Not "UserName" and the other relevant propeties of the Membe...

VS2010 RC - Is intellisense broken? How do I turn it on?

I installed the RC of VS2010 side-by-side with VS2008 SP1. VS2010 Intellisense appears to be broken, or at least not functioning as expected. I can only get intellisense if I hit CTRL + spacebar. Then after selecting the memebr from the intellisense list, hit the period again, and then CTRL + space again. If intellisense broken or just ...

IntelliSense in Visual Studio 2010 RC freezing

Every time I try to write something, IntelliSense freezes Visual Studio and I have to wait like 2 minutes for it to show code completion list. The only way I can work with is turning it completly off. **` I've already installed the last IntelliSense patch from Microsoft but the problem doesn't seem to have gotten any better. Anyone...

vim omnicomplete vs. vim intellisense

Are Vim OmniComplete and Vim Intellisense mutually exclusive or complimentary? I'm a bit confused by conflicting terminology and implementations, such as these C++ OmniComplete and C++ Intellisence plugins. ...

Web development editor

Hello, I'm new to web development and I don't know an editor with auto completion. I need such for xhtml,jscript,jquery and css. It does not matter if commercial or not,so what do the top web developers on SO use for web development? Thanks in advance! ...

Add custom words to Video Studio Intellisense 2008 C#

Hi, its possible to add my own strings to visual studio 2008 intellisense for C# using only xsd file? (without class library and without any implemented methods.) for example I will edit here an scenario: xsd: <?xml version="1.0" encoding="utf-8"?> <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetName...

How to pass a Type to a UserControl

I have a UserControl (lets say Foo.ascx) that has a Type public property with the name Bar. I am looking for a way that when i declare this usercontrol in the source view of the markup part to pass a type. for example <%@ Register Src="~/Controls/Foo.ascx" TagPrefix="prfx" TagName="fooCtrl" %> and then use it as <prfx:fooCtrl ID="the...

How to make VisualStudio intellisense work in html properties of strongly typed view?

I think the title says it all, but to be clear: If I put something like: <%=Model.Project.Id %> in the body of a strongly typed view, I get full intellisense for my model. However, if I put: <a href="/Projects/Edit/<%=Model.Project.Id %>"> With the script being written within an html property (in this case the href="" property), ...

Configuring Intellisense in ICSharpCode.TextEditor

I can't understand ho w to let Intellisense work in ICSharpCode.TextEditor. At today, replies in so are uncompleted. On the web there are no samples... I need to display a completion box with my custom keywords. Any help? ...

visual studio 2008 extended c# intellisense

Hi, If I have an xml file like this: <?xml version="1.0" ?> <CATALOG> <TITLE>Title1/TITLE> <COUNTRY>USA</COUNTRY> </CaTALOG> </xml> can I call Catalog tag like a class name from intellisense when I edit c# application ? and his child Title1 and USA ? Example with intellisense VS 2008 c# : 1) System.DateTime.Now; 2...

I want to create a compiler with Coco/R and support IntelliSense

I am a beginner in Compiler Engineering and I just want to know how to support IntelliSense. ...