Hoping you can help me -- the strangest thing seems to have happened with my VS install.
System config: Windows 7 Pro x64, Visual Studio 2008 SP1, C#, ASP.NET 3.5.
I have two web site projects in a solution. I am referencing NUnit / NHibernate (did this by right-clicking on the project and selecting "Add Reference". I've done this for ...
Hello,
Most IDEs (Eclipse, Netbeans, Intelij) provide contextually smart suggestions about the current statement you're writing. We would like to do the same thing (In Java for Java).
We considered tokenizing the input and building our own abstract syntax trees, but quickly realized that could be a month long project in and of its sel...
Since javascript intellisense actually seems to work in VS2010, I thought I might add some to those scripts I include in almost everything.
The trouble is, on some complex functions, I use option objects instead of passing umpteen different parameters, like so:
function myFunc(options){
var myVar1 = options.myVar1,
myVar2 =...
I'm building a Java IDE and am trying to implement autocompletion or intellisense. After looking around for something that will do most of the work for me (not reinventing the wheel etc) I've pulled the code for Eclipse JDT core and am trying to figure out how to implement it in my own IDE. I'm obviously working under the assumption that...
Hi everybody,
I'm just starting to play around with IronPython and am having a hard time using it with custom types created in C#. I can get IronPython to load in assemblies from C# classes, but I'm struggling without the help of intellisense. If I have a class in C# as defined below, how can I make it so that IronPython will be able to...
Hello everyone,
i want to get the intellisense in GTkmm application, similarly as we get in dot net under windows. However this time i am using Linux, C++, Gtkmm and Geany as my editor. Please guide how to get the intellisense. Moreover, if any kind of editor supports the property of intellisense, please mention that also.
Thanks and R...
Every so often, in MSVC 2005/8, the erratic Intellisense would randomly decide to kick in and do something wondrous: auto-complete the ENTIRE declaration at once, while having laboriously been re-typing/selecting the function definition for the 1000th time. No, I wasn't drunk at the time. But I did see it happen occasionally--maybe 10 to...
The intellsiense in my vs 2008 does not show the exceptions that might be drawn when im using a function. writing in C# 3.5.
...
This is a minor issue, but one I find myself running into:
When I am using jQuery in Visual Studio 2010, I find myself frequently typing:
$(#S
using Intellisense to find the SomeID object ID:
$(#SomeID).click( function() { etc.. })
then going back and adding quotes:
$('#SomeID').click( function() { etc.. })
I find it annoying t...
Oftentimes I want to bring up a system class in a source view, so that I can browse the properties and methods exposed by the class. Below is the screenshot of what I mean:
Usually I do this by selecting the class name and pressing F12 (or right click>Go To Definition). However, if I haven't got it anywhere ready, i have type it up an...
Hi all,
I installed SSMS Tools and now my intellisense isn't working. Is there a reset settings, like for VS (devenv /resetsettings)?
...
I'd like to add the XSLT 2 schema to Visual Studio 2010 to provide intellisense. I've added the schema to C:\Program Files\Microsoft Visual Studio 10.0\Xml\Schemas (removing the XSLT 1 schema), but to no avail. The schema seems to have been parsed by Visual Studio, as I can hover my cursor over the namespace declaration in the stylesheet...
I almost always initially select the depreciated SqlCommand.Parameters.Add instead of the recommended SqlCommand.Parameters.AddWithValue from the IntelliSence menu when I get into a mad typing frenzy...and this annoys the heck out of me.
Is there anyway to remove the depreciated items from IntelliSence in VS 2010 so I don't use them at ...
I'm not able to get intellisense to work with javascript/jquery code in vs10. Not even getting highlighted opening/closing bracket and parens, much less autocomplete.
In VS08 we had to install a patch to get intellisense for jquery. VS10 doesn't need that patch to support -vsdoc files. There was a bug in 08's intellisense that, if any o...
Hi all
I have a stack of code snippets imported into Visual Studio. Just recently, they have stopped displaying in Intellisense.
If the keyboard shortcut doesn't bring up anything else on IntelliSense, then I can tab and the code snippet is inserted just fine.
However, if the keyboard shortcut for the snippet happens to also bring up ...
I am writing a WPF app that has a combo box in it that is populated with a list of names. The problem I face is that the auto complete/intellisense feature ignores case sensitivity. Is there a property in the control or a work around to enable case sensitivity on the auto complete/intellisense.
...
I have seen various articles about good Python editors/IDEs, like this. However, none of them points out whether the editors support automatic code completion. I tried notepad++, PyScript and Komodo Edit, but all of these requires a hotkey to invoke the code completion dialog.
Do you know any Python editors with automatic code completio...
Hi,
I just started with VS2010 and the feature I was really looking forward too was the new Intellisense, and the Camel casing matching in particular.
But I must say I'm pretty dissapointed with the way it works and am wondering if this is just a setting, or not.
When I type 'OIE' I get the following results:
OrderItemBackerEntity ...
I'm working on a Classic ASP (with VB Script) project where I'm instantiating an object from an ActiveX control like so:
Dim objHelper
Set objHelper = Server.CreateObject("HelperLib.HelperObj")
Visual Studio 2005 provides intellisense for the first "layer" of properties and methods, but it can't seem to see properties and methods that...
I've been following two tutorials on some Visual C++ fundamentals but they all seem to lack the information on how I get the intellisense going in Visual Studio 2010.
The following code snippet is what I have
#using<mscorlib.dll>
#using<System.Windows.Forms.dll>
using namespace System::Windows::Forms;
int main()
{
MessageBox::Sho...