intellisense

How to document thrown exceptions in c#/.net

I am currently writing a small framework that will be used internally by other developers within the company. I want to provide good Intellisense information, but I am not sure how to document thrown exceptions. In the following example: public void MyMethod1() { MyMethod2(); // also may throw InvalidOperationException } pub...

Adding line breaks to comments for Intellisense ...

Does anyone know how to insert a line break into a summary comment in order for the line break to be reflected in Intellisense documentation? To clarify, assume code documentation.. /// <summary> /// Some text documentation /// - a line break - /// Some more documentation /// </summary> public void SomeMethod() { } So when using t...

Can I customize the intellisense value shown when hovering while debugging in visual studio?

When I hover over a variable in visual studio, it brings up a small control which shows the variable name, type, and a + box for viewing members, etc. But for some types the variable type is replaced by more helpful information such as "{X = 0.0 Y = 0.0 Width = 0.0 Height = 0.0}" for a RectangleF. Is there a way to specify what should b...

Conditionally selecting a version of jquery depending on environment

I have 2 references to jQuery in my master page which is currently configured for production release: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&gt; </script> <%--<script type="text/javascript" src="../Scripts/jquery-vsdoc.js"></script>--%> When I'm developing, I uncomment the...

IntelliSense not working VS2008 VB.Net

I realize this question has been asked before, but I was not able to find anything that worked for me yet. Things I have tried: Switched settings back to default (mulitple ways) Project Builds/Compiles fine Closed VS and restarted The only thing I haven't been able to try is deleting the ".ncb" file, but that's only because I can't ...

Visual Studio: Intellisense Problems and Linux Compatibility

Two somewhat unrelated questions: Sometimes when I am working on a C++ project in Visual Studio 2008 Express, intellisense just does not want to "work" even though it really should. Auto completion box does not show and status bar says something along the lines of: "Intellisense: No further information is available". Sometimes it can b...

Free IntelliSense for C++ in Visual Studio

Does anybody here know any free IntelliSense tool available for C++ which is atleast 50% of the features of Visual Assist X (Which of course is not free)? Basically I want my intellisense to work without loading my full workspace/solution? I had seen Visual Assist and it provides this feature. ...

Limit Values for Properties in .NET

I know this may be a noob question, but it's bugging the heck out of me. Let's say I have a user control that I reference in my .aspx page: <uc:somecontrol runat="server" id="uc1" property1="red" /> how do I make it so when in VS05 the intellisense will show options like "red", "green", "blue" for property1? Similar to how when you w...

Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008

I followed ScottGu's advice on enabling javascript intellisense using a -vsdoc.js file. http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx I now get intellisense when I write javascript inside my HTML/ASPX files. I write most of my javascript in separate javascript files that I attach to my code with...

Why is SQL Server 2008 Management Studio Intellisense not working?

I'm being driven to insanity trying to figure out why Intellisense just fails to work at all. The server I'm using is local and is 2008, the database is set to 2008 compatibility, Intellisense is on in every menu I can find, and yet no member list will pop up even with a CTRL-J. Has anyone experienced something like this and found a way...

Adding additional js files breaks jQuery IntelliSense

I have been using jQuery IntelliSense in VS2008 and it has been great. Recently I added a reference to jQuery UI and since then, the jQuery IntelliSense has went away. I found that once you reference another .js file in your document, the IntelliSense goes away. Any way to avoid this? ...

visual studio 2008 intellisense disappearing after 1 second

I'm having a weird problem in visual studio where I'll type a namespace/class/whatever, and intellisense will pop up as expected, but before I can highlight or read anything, it will disappear. If I ctrl-space or ctrl-j, then it will pop up again, but again it will disappear after less than a second. If I move real fast and start pushing...

How much intellisense should I expect for jquery in VS2008?

I read ScottGu's blog entry (http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx) a while back, and it seems to imply more functionality than I'm seeing. I have VS2008 and its service pack installed, and I am using a new MVC project with the RC1 version of asp.net MVC. I referenced the jquery-1.2.6.js ...

Odd problem unit testing internal classes with VS 2008

I'm starting a project which is broken up over multiple VS projects and I was planning on having separate testing projects for each of the projects, so I'd have a solution like this: Project1 Project1.Test Project2 Project2.Test There are some internal classes which I want to have tested. So I used Visual Studio 2008 (SP1) to generat...

Nested Linq crashes intellisense

Currently I'm using Visual Studio 2008 (SP1) and developing some code that uses nested LINQ statements. How ever with every level of nesting the intellisense performance drops considerably to the point where it become unusable. Has anyone else experienced something similar or found a solution to this problem? Cheers for any help Tony ...

Where can I find a SQLite code editor with schema intellisense?

Is there a SQL editor that supports SQLite databases and also features schema intellisense? I can't seem to find anything out there. ...

ASP.NET MVC jQuery migration from 1.2.6 to 1.3.2

Hi! I have a problem with jQuery migration from 1.2.6 to 1.3.2 in my project. The intellisense for jQuery in VS doesn't work. To test this issue I created new project, added jQuery to master page, built solution and checked intellisense - works OK. After this I deleted in solution this files: jquery-1.2.6.js jquery-1.2.6.min.js jque...

How do I get intellisense for WCF Ajax Services?

I've finally got Intellisense working for JQuery by applying patch KB958502 to Visual Studio 2008 and including this line: /// <reference path="JQuery\jquery-1.3.2.js"/> at the top of my .js files. Now I'm trying to figure out how to get JavaScript intellisense for the client proxies generated by the ScriptManager's ScriptReference e...

ASP.net Web Service and intellisense

Ok so I have an ASP.Net website project. The project resides on a server on the network, accessed by Visual Studio 2008 via a fileshare. In the web site project I add a web reference to a webservice I have previously created. I can consume this webservice via winforms apps without any problems. But when I try to reference the Webserv...

Visual Studio 2008 is not dettecting errors on the fly...

Hi everyone! My Visual Studio at work is not detecting errors on the fly... I just can see errors when I build my solution. Does anyone know how can I configure this? Intellisense is working just fine, but this error detection on the fly isn't. Thanks!! ...