intellisense

Open Source C# Syntax Editor with Intellisense

Can anyone please suggest me a good open source C# code editor control with syntax highlighting and intellisense to use in my application. I am not asking for any IDE like VS or #develop, I need only a winform code editor control so that I can use it in my application for scripting. Can you please suggest me a good one ... I found Scint...

Vs2010 using log4net with Intellisense

I'm using vs2010 and I need to log a multithreading application. So I decided to use log4net, but as I'm not used to work with this, Intellisense is gonna be worth. I download the .xsd from http://csharptest.net/downloads/schema/log4net.xsd and put this in VSFolder/Xml/Schemas. But, how can I say to my log4net.config to use the XSD Sche...

Why C# IntelliSense is delayed compared to VB.NET?

In VB.NET projects, errors are highlighted immediately after cursor leaves the line. IN C#, I have to wait several seconds for IntelliSense to highlight it. Also, C# version doesn't show all project errors in "Errors List", unless you start to build it. Actually, it seems to work differently in every way. Is it possible to adjust that be...

Visual Studio 2008 Explicit Reference Error

I have a project which references a dll in the same solution (called "Common"). Common has two types of errors with the same names but different namespaces i.e. Common.Login.UserDeleted Common.Imaging.UserDeleted When I type UserDeleted visual studio recognizes both of these and asks for which it is ("ambiguous reference"). I right-cli...

XML/XSD intellisense not working in Visual Studio 2010

I am working on xml and xsd files in VS 2010 but intellisense isn't working. Intellisense is working for the same files in VS 2008, however. When I type '<xs:' options like "attribute", "complexType", "simpleType", or "element" do not appear. Is there some difference between the VS 2008 and VS 2010 that I'm missing? I add an xsd file ...

Intellisense for custom config section problem with namespaces

I have just rolled a custom configuration section, created an accompanying schema document for Intellisense and added it to the Web.config's Schemas property as per Michael Stum's answer to another similar question. Unfortunately, and possibly due to me creating the XSD by hand with limited knowledge, the Intellisense relies on an xmlns...

Visual Studio 2008: No Intellisense in web.config

Hey all! My web.config no longer has Intellisense nor colour highlighting. It looks like a regular text document. Any idea why this would occur? Thanks! ...

VS2010: New and improved Intellisense?

In VB.NET type this on a new line: DateAdd( Shouldn't a dropdown picklist of enum values appear? It used to! I miss it! Of course, this is just one example where an enum pick list does not appear where it did before. Can anyone defend this or is it a bug? ...

kdevelop intellisense

How can I enable the intellisence in KDevelop using C++ and QT? ...

Resharper intellisense confusion

Today I had something weird happen in my copy of Resharper 5. I have a class that looks like this: public class Foo { public string Username { get; private set; } public Foo (string userName) { Username = userName; } public void Bar() { DoWork(Username); } public void DoWork(string userName) { } } W...

Auto Completion in VS 2010

Hello, I'm currently trying VS2010 and while it's smooth, good looking, sexy would I even add, I've met a MAJOR Turn off, being still a big teen noob in C and C++, I need my AUTO Completion until I learn some of the lib's members. I tried toggling the CTRL+ALT+SPACE Option, using the hotkeys, the Button in the EDIT Tab is disabled (grey...

Parse custom tags to get attributes out for data parsing

HI there, I am looking for best practice or ideas for cleaning tags or at least grabbing the data from within custom tags in a text. I am sure I can code some sort of "parser" that will go through every line manually, but isnt there some smartere way today? Data thoughts: {Phone:555-123456789} here we have "phone" being the key...

Intellisense doesn't work with an upgraded solution from vs 2005 in vs 2008

I converted a VS2005 solution to VS2008, but Intellisense isn't working. It works fine with a native solution made in VS2008. Its a C# solution. ...

What intellisense dropdown is this, and how do I turn it off?

I'm having some problems with Visual Studio and Intellisense - whenever I click Ctrl+Space to get the regular intellisense dropdown, I get the one shown in the picture instead. Which setting should I change to prevent this behavior? This happens in all sorts of files, not just xml... This problem has appeared since I installed some ...

Recreating "Font" Property Behavior

Controls that inherit off of System.Web.UI.WebControls.WebControl have a property called Font. The type is System.Web.Ui.WebControls.FontInfo. When working with these controls in the designer, it breaks out the Font property into multiple properties like Font-Bold, Font-Italic, etc. When working with these same WebControls in the codeb...

Intellisense Error Log in Visual Studio 2005?

Intellisense compiles your code in the background in Visual Studio 2005, so that you can enjoy all of it's benefits. However, alot of the time in Visual Studio 2005, it stops working. Is there any sort of error message panel that will display when Intellisense can't compile the code for some reason (just so that I can be aware that it ...

Visual Studio Free addin or resharper plugin to show constant value in tooltip

Is there a free addin or resharper plugin that will let me see the actual value of a constant value when you hover over a reference to it ? Since the compiler forces const fields or properties to be a concrete compile-time constant, it is only logical that it show it straight in the tooltip. eg: const int DISPLAY_MODE_SIMPLE = 0x...

XML Validation with XSD in Visual Studio IDE

I know I have done this before, but it isn't working today, nor can I find anywhere that explains how to do it. It could be my lack of sleep, but I suspect gremlins. I have an XML document and a directory full of XSD's that define it. How do I set the Visual IDE up to notify me of validation failures, and then provide an intellisens...

Code sections and intellisense in html tags and attributes

Hi there. I noticed this in earlier versions of Visual Studio. But now i use VS 2010 and it is still there, so i want to ask if this is supposed to be so, or if its just not fixed yet. Using the <%= %> tags inside 'real' html tags works and is in most cases the way i use them. But the intellisense and code highlightning does not work an...

VS2010 modify intellisense popup order via an addin?

Is it possible to modify the order of the intellisense options shown when I hit ctrl-space? Specifically, I'd like to order them in scope, so that if I have a variable in my function that matches what I've typed so far then it goes to the top of the list. If there's a member in the class, that's next, etc. I'm just kind of sick of h...