intellisense

Using Enumeration in Select case

Enum age Over18 Under18 End enum Select case age End select 'age' is a type and cannot be used as an expression. Is there any way of using enums in "select case"? ...

Is there any tool that improves intellisense in vc++ (vs2008)?

Is there any free tool that improves Intellisense and provides code snippet in vc++ 2008? Please don't post commercial tools ...

Is there anyway to disable Visual Studio auto complete for object keyword

Short version- is there a way to turn off Visual Studio Intellisense for the object keyword. Long version- I'm using Visual Studio 2008 and I'm basically using anonymous types. I begin typing something like: Assert.AreEqual("/SomePath/Stuff", GetOutboundUrl( I type in new { Then I see that Visual Studio has recognised that the metho...

Using JQuery in a Subfolder When the MasterPage is in the Root Folder.

I am trying to use the jquery library in ASP.NET in a subfolder called "samples" with a masterpage that is located in the root directory. Presently the references to the jquery scripts are located in the head tag of the master page. If the page I am creating is also in the root directory, everything works fine. If I move the page to the ...

Intellisense Text Editor VB.NET

Hi, I need to espose some code in my app to the end user so that they can make modifications. Is there a free text editor with intellisense support out there, which I can embed in my application. The code will be VB.NET ...

javascript intellisense in VS2008 - external WCF service

I have looked up the following article before making this post but my scenario is a little different http://stackoverflow.com/questions/587350/how-do-i-get-intellisense-for-wcf-ajax-services I also have the patch applied to VS2008 and have jquery intellisense working. In my solution, the WCF service is actually not inside the ASP.NET ...

UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crash

UPDATE1: I have reinstalled Visual Studio and I am still having this problem. My guess is there is a problem with my environment. Update2: Diving in. I attached windbg to devenv and set a breakpoint in windbg for msenv!_tailMerge_WINMM_dll and traced through. This is trying to load winmm.dll using the LoadLibrary API. I can see that ...

jQuery Intellisense using something other than $

I'm currently using two libraries (prototype and jQuery), thus I've implemented the jQuery noConflict method and set it equal to $j: var $j = jQuery.noConflict(); Problem is, now the jquery-1.3.2-vsdoc.js doesn't recognize my $j as a valid entry argument. Is there a way to change this? I've played around with the jquery-1.3.2-vsdo...

Syntax highlighting component for .NET

I'm looking for a .NET component that free and include the following features: Real-time syntax highlighting (HTML, VBScript,..) Intellisense (I can build my own intellisense library) Line number I found ScintillaNET from http://scintillanet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=15804 but I wonder if there is a better...

How do i change the intellisense settings in VS2008?

What the title says. Is there a way to change intellisense settings (intellisense box size and things like that)? ...

XML Comments for Abstract methods in Visual Studio 2008

hey guys Say you have an Abstract Class with Abstract methods, and you place XML Documentation Tags on those methods. When you inherit from that class, and implement those methods, intellisense does not "inherit" the XML Documentation...? Does anyone know if its possible to make the IDE inherit the documentation? if not, don't you th...

Get Parameters Type and no. of parameters for a function in Visual Studio Editor (C#)

After writing the name and opening and closing parentheses (brackets) of a function in C#, is there any way to get the types and number of parameters of the function, without deleting the opening parenthesis? ...

Can I tell VS2008 to ignore debug-time evaluation of my lazily loaded properties?

In our .Net application, some of our business objects use lazy loading to access data from the server. While debugging, if I want to inspect a property I have to be very careful and not "look at" or access those properties because this causes the IDE to try and evaluate those properties, which fails. Is there an attribute I can put on ...

Is there a way to get full IntelliSense for VBA in Access and Excel 2007?

In VB.NET, the IntelliSense pops up as soon as you start typing which gives you a pretty full list of things you can use at that moment. The IntelliSense in VBA however, doesn't kick on for me until a period is put after the part you're using. For example, I go into the VBA editor in Excel 2007 and start typing the word "Range" but the I...

VS2008 Intellisense screwing up when I add an XMLNS: namespace declaration to my stylesheet

When I have the following (default) declaration in my XSL file, everything works fine. when I type a "<" character, intellisense window pops up with all the xsl: namespace choices as expected. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:x...

Namespace browsing works correctly in tools and as Imports but not in code window (except imports line)

Hello, I posted this question and still have not gotten an answer so I thought I would link to the following video file of the problem...sorry I tried to upload the video to videos.yahoo.com but the downgraded video is unviewable. So here is a direct link to the avi file hosted on my website. SUMMARY OF THE PROBLEM I have a controls p...

Why is IntelliSense support for C# lacking when compared to VB.NET?

For me, developing for the Java ecosystem payed the bills for many years. However, for several years now, I have been working primarily in the .Net space. Initially, my transition into the .Net world consisted of writing and maintaining VB.Net code. VS provided almost all of the nice intellisense support I came to expect after years o...

how do I make Intellisense work for F# in VS2008?

I am using VS Team System 2008 version 9.0.21022.8 RTM, .NET Framework 3.5 SP1. I get C# and VB.NET Intellisense, but not for F# May 2009 CTP. UPDATE July 7th, 2009 I am installing VS 2008 SP1, maybe it is better than reinstalling VS 2008 from scratch. ...

Visual C++ 2008 Intellisense interprets CLR keywords on non-CLR project

I'm using Visual C++ 2008 SP1 Express Edition, and as far as Intellisense goes, it is interpreting CLR keywords (like event), instead of treating them as regular C++ identifiers. This is not a CLR project, so I'm at a bit of a loss - any ideas on what's going wrong / how to fix? I wasn't able to find anything that sounded promising in ...

Visual Assist not showing parameterlist propperly.

When I make a method call, for example String.Compare(s1, s2); I should see the parameters list when I press comp but I don't, I need to press ctrl+shift+space and it's pretty annoying (I use Visual Assist 10.4 and writing C#-code) ...