intellisense

ASP.NET VS2008 Ajax Problem

Hi Guys, I am using VS2008 Pro and the problem is the following. I need to add eg. <asp:ScriptManager ID="ScriptManager1" runat="server"/> <ajaxToolkit:FilteredTextBoxExtender ID="Filter1" runat="server" ValidChars="AEIOU" TargetControlID="TextBox1"></ajaxToolkit:FilteredTextBoxExtender> This problem is that <ajaxToolkit........ ar...

"Aliasing" tasks in msbuild for intellisense

i'm really hoping i just don't know how to do this, and that 'this' is doable... but one of my biggest complaints to date with msbuild is that they 'break' schema by using dots in the names of the tags. example: I want to bake intellisense into my build using vs 2005 but I can't because the namespace qualified task names are invalid ...

VS 2008 JavaScript Intellisense Woes

I have a JavaScript class that I have made and put it into its own .js file. When I reference the the file from a web page and create an instance of that class there is no intellisense telling me the methods\variables available, it just show constructor as the only method. But when I copy the class and past it straight into the web page ...

bash script to show compatible commands based on "Windows-speak"

Problem: Customer X is a Windows user who wants to be able to trigger pre-packaged bash commands by using mnemonic keywords or "tag hints" when she is logged in to her RedHat box via shell. Example: Customer X logs into host using ssh and wants to do some routine file operations. She wants to be able to type copy file and get back a ...

Netbeans intellisense for Yahoo utils

In netbeans I created an html page in which I am using Yahoo utils. If I type "yahoo." then namespace, render, hide are not visible in the interactive documentation. Please tell me how to configure Netbeans to handle this. ...

Recommendations for SQL Server 2005 IntelliSense tools/add-ins?

I am your average Visual Studio .NET developer who has become dependent on Intellisense and Pre-compile syntax checking. I am looking for similar Intellisense functionality for MSSQL Server 2005 and T-SQL I was wondering what editors or add-ins people have had success with and would be happy to recommend. What key features do you use r...

VS JavaScript intellisense with paramaters

here is some sample javascript: SomeObjectType = function() { } SomeObjectType.prototype = { field1: null, field2: null } SomeOtherObject = function() { } SomeOtherObject.prototype = { doSomething: function(val) { /// <param name="val" type="SomeObjectType"></param> var val2 = new SomeObjectType(); ...

UserControl that has a generic class in its inheritance tree

I'm trying to create a UserControl that inherits from a generic class. It does not directly inherit from a generic class, but through an intermediate class that does not use generics. This compiles and works at runtime, but I get an error at design time. Here's my generic parent class: Public Class GenericParent(Of T) Inherits Us...

Intellisense good or evil

Is intellisense provided in most of the IDE's a good one or not. It surely helps in faster application development. Does it weaken the coding skills of a programmer? ...

How do I get Intellisense (code completion) to work on VS.NET inside Parallels on a Mac?

How do I get Intellisense to work on Visual Studio running inside Parallels on a Mac? On my PC I press CTRL+Space to get Intellisense, but inside Parallels it looks like no key combination works; I thought that maybe it's because Quicksilver or Spotlight were using the same key combinations and could be intercepting, but it still doesn'...

How do I make the Enter key on intellisense when typeing in VB react the same way as in C# in Visual Studio?

I'm using Visual Studio 2008 and I'm used to C# where when Intellisense pops up, I select what I want by hitting enter and it doesn't skip down to the next line. In VB when I hit the enter on intellisense, I jump to the next line. Does anyone know where the setting for this intellisense option might be? ...

WPF: how to display enum property values in vs2008 xaml editor intellisense?

i created a wpf custom control with a dependency property of an enum type. i want the user of that control when editing the xaml in vs to see the optional values of the enum in the intellisense window. does anyone know how it can be done? ...

how can I get intellisense in a T4 template?

When trying out these tutorials (T4 Tutorial: Creating reusable code generation templates) I noticed that although I was using plain c# I didn't get any intellisense, probably because of the file extension (.tt) Isn't there anyway to say to Visual Studio to consider those .tt files as .cs files and thus get the correct intellisense help...

Using up arrow in Visual Studio IntelliSense to select the last item

Anyone knows if this is possible? I tried it in vs 2005 and 2008 and it doesn't do that. IMO this would be a very useful feature when I know I want to select the last item or an item that's closer to the end of the IntelliSense list. ...

Inherited Public Properties not showing up in Intellisense

I have inherited a class in vb.net and when I create the object, I am only seeing one of the inherited public properties in intellisense. Any solution to this problem? print("Public Class CompanyMailMessage Inherits MailMessage Private AdobeDisclaimer As String = "You will need Adobe Acrobat to read this file. If it is not ins...

Is there a way to remove private members from Content Assist in Eclipse

I'm in Eclipse writing Java. I come from Visual Studio with Resharper writing C#. When Content Assist comes up, I see all the private members of a class, even though I'm not editing that class. Is there a way I can turn that off? It's really distracting. ...

Why doesn't intellisense show the appropriate methods according to what I am passing in?

Like there are 3 methods like: Modify ( int arg ) Modify ( double arg ) Modify ( string arg ) And if I am passing in a double variable, it should automatically navigate to method #2, instead of me scrolling down to see if there is a method that gets a double, right? ...

How to stop Visual Studio css intellisense breaking when css is added via a custom control

Hi all, I have created a simple Asp.Net custom control which automatically combines all the correct stylesheets to send to the client (based on browser type/version/etc). However, because at design-time the head tag looks something like this... <head> <cc:CssControl runat="server" /> </head> ...VS is unable to provide intellisen...

Visual Studio 2008 user controls registered in the web.config not registering with intellisense

I have a C# Web application built in Visual Studio 2008 where we rely heavily on user controls for 'pre-built' blocks of ASP.NET. Instead of registering a big stack of user controls on each page, we register all the controls in a local (to a specific folder) web.config file. The advantage is that we can use the controls and the pages lo...

Can intellisense be exported or extracted from Visual Studio to a text file?

I'm trying to write some documentation for a webservice that has been provided by one of our vendors for an application we're integrating. A bunch of the interface is custom objects defined in the web service itself. The vendor has put up significant resistance to providing any documentation for this application and so I've taken it up...