I'm working on a project that combines .NET with some legacy ASP code via COM interop. The legacy ASP is written in JScript - files look like this helloworld.asp example.
<%@Language="JScript"%>
<html>
<head>
<title>Jscript ASP Page</title>
</head>
<body>
<h1>JScript ASP</h1>
<p>This is JScript ASP at <%=new Date()%></p>
<%
va...
I found a bug in the method stub generation of Visual Studio intellisense.
class A { }
class B : A
{
A a;
void f() { a.NewMethod(); }
}
When I choose "Generate Method Stub" on a.NewMethod(), I should get a public method. Instead, intellisense confuses itself and creates a protected method for me.
The compiler correctly compla...
I just installed SQL Server Express 2008 because of intellisense feature. It worked at first but than it stopped working. Looking for the option to check and later consulting Google I have found that it looks like Microsoft disabled intellisense if you connect to SQL Server 2005 databases.
Is this absolutely correct ?
Is there any solu...
I've just installed CodeGear Studio 2009 and I didn`t find where I can put the Intellisense and code hints on.
And, by the way, in Visual Studio we can indent selected blocks of code in the same way. How can I use similar functions in CodeGear?
Any ideas about that?
...
Autocompletion in the Visual Studio HTML editor inserts double quotes (e.g. <input type="text").
Does anyone know if there's a setting that will change the default to automatically insert single quotes (e.g. <input type='text')?
thanks,
Michael
...
Has anyone found a plugin for Visual Studio to allow for PowerShell syntax highlighting or IntelliSense? If not, does anyone have any idea why not? I keep hoping someone else with copious free time would have tackled this by now. I have hope since other folks have managed to take the limited documentation and build custom IntelliSense p...
In a form, I added an overload of ShowDialog(). In Visual Studio, this overload shows up in Intellisense as the third version. How can I make my overloaded function appear as #1 (i.e. the default)?
...
I have a third party JavaScript plug-in but including the file breaks IntelliSense for jQuery amongst other things. The only way I can get IntelliSense back working with jQuery is by commenting out the plug-in. Is there a way I can hide the plug-in file from the IntelliSense parser?
...
I am trying to get intellisense in VS2008 in a js file, foo.js, from anther js library/file I've written but cannot figure out the reference path ?syntax?/?string?
The library is in a file called common.js which is in the same folder as foo.js I'm working on.
Here's the paths I've tried...
/// <reference path="../../scripts/common.js"...
Is there any way to 'hide' the name of a class, whose sole purpose is to provide extension methods, from Intellisense?
I would like to remove the class name from the Intellisense list but need the extension methods of the class to be available to external assemblies via Intellisense in the usual way.
...
Can you program/configure Visual Studio to produce custom intellisense for your own server controls.
eg can you get it to do this:
for a tag of your own like:
<MyCompany:MyTag ...
...
Hello,
I am using JQuery extensively in my latest project. I have put my javascript content in a separate .js file, and am referencing that file in my HTML page. I get jquery intellisense support in visual studio, but I don't know how to refer the jquery file in my new javascript file so that I can get jquery intellisense there to. I am...
I've followed every steps in here, but still, the Intellisense for JQuery simply isn't working, any ideas?
...
The Rhino Mocks download comes with a "Rhino.Mocks.xml" file that apparently adds Intellisense for Rhino Mocks.
What do you need to do with this file in order to get it to work?
...
I am using Eclipse 3.3.2 with the Flex Builder Plugin (3.0.194161) and the Flex SDK 3.2. Recently the intellisense has started forgetting about everything in the flash.* package EXCEPT flash.errors.*
The code still compiles, but attempting to automatically resolve something (CTRL+SPACE) removes any of the flash.* import statements and t...
I am interested in implementing an html textbox that has auto-complete capability which supplies suggestions for mathematical functions. My goal is to be able to have a text area where a user enters a series of equations and for each variable they can select from a library of functions and custom formulas. Basically this would be intell...
Since String implements IEnumerable<char>, I was expecting to see the Enumerable extension methods in Intellisense, for example, when typing the period in
String s = "asdf";
s.
I was expecting to see .Select<char>(...), .ToList<char>(), etc.
I was then suprised to see that the extension methods do in fact work on the string class, the...
I've notice an issue - it feels like a bug but I suspect a 'feature' - in SSMS in SQL Server 2008.
I have various tabs open, for example an alter table script in one table and a SProc that queries that table in another tab, and when I execute my Alter Table script the changes are not reflected in Intellisense in the other tab.
I can cr...
Example:
public class Name {
public string FirstName { get; private set; }
public string LastName { get; private set; }
private Name() { }
public Name(string firstName, string lastName) {
FirstName = firstName;
LastName = lastName;
}
}
When trying to instantiate this c# class, intellisense sh...
Having programmed for a while now I have noticed that I am becoming more and more reliant on the internet and intellisense to do my job. But I was wondering how much that has effected my knowledge over the past year or so. But does this matter?
For example I am more likely now to remember that when I need to program against objects I ha...