intellisense

How do you get VS 2008 Javascript Intellisense working for complex prototypes?

I have been able to get javascript intellisense working correctly for a 'class' prototype defined like this: function GetCustomerList() { } GetCustomerList.prototype = { HEADER: { RETURN_CODE: 0, RETURN_MESSAGE: "", } , NUM_RECORDS: 0, START_RECORD: 0, END_RECORD: 0 }; I can type something...

intellisense jquery + external js in expression web?

Hi there, Can anyone tell me what i am doing wrong? I am trying to get intellisense in expression web 2 for external js and jquery I am able to do it in visual studio 2008 I have searched google but can't seem to find the way of doing it Any ideas? Thanks ...

How do I implement intellisense-like suggestion boxes for a winforms textbox?

We have a textbox that the user enters sets of terms into, delimited by commas and separated by newlines. There may be thousands of valid terms, so we'd like to offer the user intellisense-style suggestions as they type. The default autocomplete isn't adequate because it will only do prefix-matching on the entire textbox, and won't sup...

Microsoft visual C# 2008 compiler could not be created. Please re-install Visual Studio.

Any idea how to fix this error in Visual Studio? This error occurs when trying to create a new C# Console Application. I can create and build a C# Website, but Intellisense does not work. VB Applications work correctly. I tried upgrading to SP1 but that did not help. I would hate to reinstall Visual Studio and have the error crop up...

Is there an API in .net to read XML comment documentation file.

In this question I see that microsoft ships the XML documentation files for the BCL. I wonder if anyone knows if there an API within .net that can be used to look this up at runtime. I know we can parse the files manually using the XML api. The use case is that we allow custom (read 3rd party) types/assemblies to be used in our system, ...

VS 2008 Intellisense hanging on right click

I have a fairly large C++ solution in Visual Studio 2008 SP1. When I RIGHT CLICK, I see the updating intellisense in the status bar and the whole studio freezes for several minutes. Right click worked fine in 2005. Any workarounds? ...

Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning

As the topic suggests I've got VS 2008 with sp1 installed and am not receiving full Intellisense or ANY outlining capabilities when editing classic asp pages. My coworker is also using VS2008sp1 and has outlining working correctly (but he has no idea why) I've made a screen, you can find here Classic asp outlining issue screen shot 1 H...

Plugin for intellisense on a textarea?

Are there any jQuery plugins for doing intellisense in a textarea? (just javascript would work good as well) ...

ASP.NET Intellisense vs. Client-Side Attributes

I am just getting into more client-side stuff in ASP.NET using Javascript, and there's something that's bothering me that hopefully somebody can explain. Why is it that intellisense doesn't show the all of the attributes/properties of a .NET control? For example, a ListItem in a RadioButtonListControl: <asp:ListItem Value="1" Text="Ye...

Extracting Property Names For Reflection, with Intellisense and Compile-Time Checking

Ok. So I have some code that maps certain controls on a winForm to certain properties in an object, in order to do certain things to the controls when certain things happen to the data. All well and good, works fine. Not the problem. The issue is, to add items to the mapping, I call a function that looks like: this.AddMapping(this.m...

What is the current state of tooling for Scala?

Over the past year, I've heard an increasing amount of hype regarding the Scala language. I know that there are several existing projects that have plans to integrate Scala support with IDEs; however, it isn't always clear how good the integration really is. Do they currently support Intellisense as well as Eclipse and Netbeans do for ...

jQuery Intellisense in VS 2008 not working with ajax ToolkitScriptManager

I've followed all the steps to get intellisense working for jQuery in VS 2008 SP1 (with the vsdoc hotfix). It works when I reference jQuery inside an asp:ScriptManager control like so: <asp:ScriptManager runat="server"> <scripts> ... </scripts> </asp:ScriptManager> But I'm using ajax ToolkitScriptManager instead and the intellisense d...

How do I add intellisense to my application?

We have a proprietary macro language in one of our products, edited through our Windows software. I would like to add intellisense, but I have no idea how to go about this (at least not without completely reinventing the wheel). Is there any sample code or 3rd party package that can at least get me started? It doesn't have to be free. T...

How to fix the HTML Intellisense in ASP.NET AJAX Controls or Pages

I'm using ASP.NET AJAX. I create a .aspx page that is based on a .master file. I add the , , control into the content page, and suddenly the markup intellisense no longer works for these controls, or for any controls nested within them. Is this a bug? Can I fix this? ...

Can Vim do Fortran completion of subroutine arguments

I don't know if this is possible at all, but still ... no harm in asking. I'm using Vim to edit fortran files, old and new (.for and .f90). I'm trying to get completion, something alike Visual Studio's, so that when I have several subroutines defined in a file: subroutine init ( ibc, nquad, ul, ur, xl, xr ) subroutine output ( f, ibc, ...

ReSharper 4.5 took away all intellisense for VS 2008!

I just recently purchased ReSharper 4.5 to use with Visual Studio 2008. Upon installing it, I have noticed that there is no intellisense at all! There is no ReSharper intellisense, no VS intellisense, nothing). Any ideas? Thanks! ...

Is there a way to have intellisense working for classic-asp custom classes in VS 2008 ?

First, this has never worked before, so it is not specifically related to VS 2008. The problem : when you have custom asp classes in separate files that you include in a "main" asp script, you won't get intellisense in Visual Studio. Example : CUser.asp <% Class CUser Public Sub Create() Public Sub Remove() End Class %> Main....

How does intellisense work in Visual Studio?

I hope this is a valid question: how does intellisense work in VS2008? I'm after what is known about the algorithm it uses to find the suggestions, when exactly it pops up (the "." is just one obvious trigger), how its behavior can be modified if at all possible, etc. To put this question into context: The main issue I'm trying to reso...

Visual Studio jQuery IntelliSense fix KB958502 does not recognize visual studio 2008 install on windows server 2008 x64.

So just this week I had the opportunity to re-build my development machine and I opted to use Windows Server 2008 x64 version for my operating system. I re-installed Visual Studio 2008 along with all of my other development tools. I surprised to see that the KB958502 hot fix did not recognize my installation of Visual Studio 2008. I wond...

Visual Studio F# Error

I am learning F#, and I came across an intellisense error let rec fib n = match n with | 1 -> 1 | 2 -> 2 | _ -> fib(n-1) + fib(n-2) fib 6 <-- This line says "This expression should have type 'unit', but has type 'int' Does anyone know how I fix this? ...