4
votes
3answers
737 views
WPF: how to display enum property values in vs2008 xaml editor intellisense?
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 …
4
votes
3answers
261 views
jQuery UI intellisense?
I have been using (and loving) the jQuery intellisense for Visual Studio 2008 (blogged about by Scott Guthrie here) but has any one ever come across an intellisense script for the UI components of …
6
votes
5answers
1k views
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 …
2
votes
1answer
28 views
Intellisense support in Visual Studio 2008/2010 for jQuery closures {
I'm trying to get Intellisense to correctly work for closure. As a plugin author, I always use a closure to create an isolated environment for my plugin code:
(function($) {
// code here
…
6
votes
4answers
110 views
Can Visual Studio’s C# intellisense be given a hint to display a certain method overload first?
Hi everyone,
I have two methods that are overloads of each other
public class Car
{
public int GetPrice(string vinNumber)
{
string make = Database.GetMake(vinNumber); // expensive …
0
votes
2answers
29 views
Uninstall of CodeRush and ReSharper - Intellisense Not Working
Install order:
Visual Studio 2008
ReSharper
Uninstall ReSharper
CodeRush with Refactor Pro
Uninstall CodeRush with Refactor Pro
Now my intellisense doesn't work. Any settings I should look at …
3
votes
4answers
243 views
Is there any way to ‘hide’ a JavaScript file from IntelliSense in Visual Studio 2008?
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 …
0
votes
4answers
39 views
Intellisense not working
Intellisense is not working correctly for new user Controls. Any class in the same namespace as my new class is not visible in intellisense. It compiles without any problem. I'm using VS 2008.
0
votes
0answers
27 views
Intellisense with single source file in multiple projects
In a single solution, if I have the same source file present in multiple projects (with different project settings, e.g. different #defines), Intellisense and all the features depending on it seems to …
0
votes
3answers
46 views
Why is my visual studio 2008 project read-only
I'm working on a project for school, we use visual studio 2008 there and I use it at home, both are express edition. The project in question I started at school, but I cannot edit it at home, when I …
1
vote
1answer
54 views
visual studio copy to clipboard IDE freezes
this is really frustrating me. this problem occurs when I have a particularly large .cs file (one i'm working on at the moment has 6000 lines and many anonymous types).
I will copy a line or a part …
4
votes
2answers
32 views
XSLT Intellisense in Visual Studio 2008
I have an XML file which in addition to it's standard XML schema allows the use of XSLT.
I am including the correct namespace for XSLT (xmlns:xsl="http://www.w3.org/1999/XSL/Transform") however I am …
0
votes
1answer
15 views
WPF XAML Intellisense doesn’t work correctly for custom routed event handlers
I defined a custom routed event with the following constructs (names changed):
public class MyRoutedEventArgs : RoutedEventArgs
{...}
public delegate void MyRoutedEventHandler(Object sender, …
0
votes
3answers
45 views
Visual Studio 2008 Intellisense with struct keyword
I am using visual studio 2008 express edition.
A normal win32 console C project with the code below:
int main(void)
{
struct _addr_info
{
char name[30];
char street[40];
char city[20];
char …
0
votes
2answers
38 views
IntelliSense doesn’t work in VS 2008
Can anyone help me figure out why IntelliSense doesn't work in VS 2008?
