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...
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 ...
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 ...
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 ...
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.
...
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...
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();
...
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...
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 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'...
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?
...
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?
...
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...
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.
...
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...
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.
...
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?
...
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...
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...
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...