IntelliSense is Microsoft's implementation of autocompletion, best known for its use in the Microsoft Visual Studio integrated development environment.
0
votes
0answers
21 views
Disabling Intellisense in Vs2008
Intellisense parsing brings my 12 core (24, hyperthreaded), 32GB machine to its knees every time I open a Visual Studio (2008, SP1) solution (which is quite often because VS crashes frequently) - for ...
0
votes
1answer
20 views
display constants for custom object, similar to MessageBoxButtons
Ok, so I have an odd question- I'm not sure I'm phrasing this correctly, which may be why I've not found any info on this in my searching.
I have a class defining a Host object representing a ...
2
votes
1answer
61 views
+50
IntelliSense do not work with extension method when property name is the same as class name
Based on this answer: " Giving a property the same name as its class ", I've started to use property names the same as their class names. But recently I've met a strange corner case and I don't know ...
0
votes
1answer
13 views
WebMatrix 3 intellisense and publishing
Does WebMatrix 3 support intellisense for css libs you add or a customer css file you create? For me this doesn't work. It would be nice to have intellisense when using say twitter bootstrap for ...
2
votes
1answer
82 views
No intellisense in C#
I use Microsoft Visual Studio to code in VB
This is the first time I code in C# and there is no intellisense.
Tried
Tools -> Options -> Text Editor
and there is nothing C# related
How to fix ...
2
votes
3answers
21 views
intellisense in Eclipse for currently saved files does not get reflected
i am developing android project which was working fine but at the middle somehow i am not able to add my newly created XML layout files to my Java files as it does not show me option when i write ...
1
vote
3answers
58 views
+150
Do DynamicProxy classes work well with intellisense/type safety?
I was looking at using DynamicProxy classes, and I'm fairly new to this concept. Before I got too far down this road, I was wondering how well these classes work with IntelliSense and type safety?
...
0
votes
2answers
42 views
Intellisense doesn't show comments
If I type something in VisualStudio2010 like DataSet1. I get a list of all available Methods and Properties (Intellisense). This works fine. But if I select a method or property in this list I don't ...
0
votes
0answers
36 views
Replacing for Intellisense
I'm working on a code-editor (winforms) and i found a bug for replacing .
Replacing was text from Richtextbox will be replaced by text from listbox . like in actual code-editor (richtextbox = ...
0
votes
0answers
30 views
vb.net intellisense not showing methods
why does intellisense does not show some methods in vb.net?
e.g. HttpRequestMessageExtensions class from System.Net.Http is not shown at all.
this is ok with c#
public HttpResponseMessage ...
0
votes
0answers
11 views
Intellisense showing too many members
When editing XAML in Visual Studio 2010, Intellisense is so slow as to make the editor unusable. An opening bracket, for example, will introduce a many-second pause--during which the whole VS UI is ...
2
votes
1answer
67 views
How does Visual Studio decide when and how to rebuild IntelliSense?
I'm trying to write a code generation tool. For this tool it's important that the generated code is available prior to building (i.e., for IntelliSense). I know Visual Studio will at least partially ...
0
votes
1answer
35 views
Why is the Text property of UserControl not present in Intellisense? [duplicate]
I'm customizing a control which inherits from UserControl, this control has Text property inherits from UserControl. I noticed that when I type, there is no Text entry in the properties list (provided ...
-1
votes
0answers
21 views
Provide Intellisence to a textbox using javascript in web
In my current project, it is required that to provide intellisence of a pre-defined set to a text/text-area while user typing the text. And the user should be allowed to select from the pre-defined ...
0
votes
0answers
72 views
Visual Studio 2012 Web Express: show javascript methods in navigation
I've recently decided to move from using Komodo Edit to Visual Studio 2012 Web Express for my html/css/javascript project (no asp.net features, just a static webpage.)
Some of my script files have a ...
0
votes
2answers
47 views
Intellisense missing for one project in C# solution
It used to work, then one day after a compile intellisense disappeared. It would show all associated system methods and variables when I hit Ctrl + Space, but nothing that I wrote. Even under the ...
0
votes
2answers
65 views
Visual Studio 2012 cannot convert from 'bool' to 'System.Boolean'
I'm having strange intellisense error show up up even though the project works. They all deal with referenced projects.
Examples:
cannot convert from 'bool' to 'System.Boolean'
cannot ...
2
votes
1answer
41 views
Death by tooltip - stylecop/resharper/intellisense - how to I get intellisense tooltips to show?
Annoying crap. I am using VS 2012; I have ReSharper and StyleCop (SC) installed. If a StyleCop warning is enabled on a line of code, I can't get rid of it unless I fix it. I want to handle the SC ...
0
votes
0answers
10 views
The selected item doesn't scroll into view
I'm creating my own intellisense presenter in vs. I have a 'CompletionSessionPresenter' class which implement IPopupIntellisensePersenter interface and IIntellisenseCommandTarget interface. The WPF ...
0
votes
1answer
29 views
[C++]Intellisense Reports Class Reference of Type <Error-Type>
I have been trying to fix this problem for a few weeks now but nothing I have done has fixed it. This seems to be a problem with the Intellisense information not being updated in a .cpp file.
The ...
0
votes
1answer
32 views
Visual C++ and Allegro5: cannot recognize objects from abstract class from header file
I am a beginner in allegro and not really too well-seasoned with C++, but I have knowledge of the language so I wished to code a chess game. But since I wanted to use images in this game, I looked ...
0
votes
2answers
72 views
Why does my property have a line through it on intellisense?
When i access a property through intellisense, sometimes it has a line through it like so :
Why is this happening? is it deprecated?
0
votes
0answers
54 views
Why does my property have a line through it on intellisense? [duplicate]
When i access a property through intellisense, sometimes it has a line through it like so :
Why is this happening? is it deprecated?
0
votes
0answers
44 views
How can 'Go To Definition' find multiple results?
In the Visual C++ 2010 IDE, I am looking over an existing project on which I am to make some changes. When using 'Go To Reference' on several symbols, rather than navigating to the definition, it ...
0
votes
1answer
15 views
Is it possible for Intellisense to search for classes in unimported namespaces like in Eclipse?
In Eclipse, autocomplete works even for unused packages or namespaces. That means that if I have a class named DuckWrapper in a package, and in a class that didn't import the package DuckWrapper I ...
0
votes
0answers
19 views
How to get the longest item in intellisense presenter
I'm creating my own intellisense presenter of VS, I want to bind the presenter's width to the width of the longest item, but I don't know how to get the longest item, anyone can help?
0
votes
0answers
13 views
Rubymine intellisense for module + class
I have some rb classes - init.rb as entry point, class.rb as Class, module.rb as Module.
In init.rb I first require Module, then Class. Class includes Module.
So when I use the methods of the module ...
0
votes
2answers
43 views
single intellisense file for multiple js function files?
I have functions1.js, functions2.js and functions3.js. Each has a function, funcA, funcB and funcC respectively. I created a file called "functions.intellisense.js" and added it to _reference.js. I ...
0
votes
1answer
45 views
Python C++ binding in OpenCV
What technique/library is used for Python binding in OpenCV2.0?
I am aware there there are a number of libraries for C++/Python binding and that previous versions of OpenCV were using SWING library.
...
0
votes
2answers
68 views
How do I get rid of the “Intellisense: no suitable conversion function from ”std::string“ to ”std::string *“ exists” error?
So here's my code,
#include <iostream>
#include <string>
using namespace std;
int main()
{
const int NUM_NAMES = 20;
string names [NUM_NAMES] = {"Collins, Bill", "Smith, Bart" , "Allen, ...
1
vote
0answers
80 views
VS 2012 Intellisense and Class highlighting not fully working with old ASP.NET website project
My intellisense and class highlighting does not work on one of ASP.NET website projects. It works for all other projects, including other ASP.NET website projects but just not this one.
The project ...
2
votes
1answer
68 views
How can I make Visual Studio display inline documentation for built-in JavaScript?
In Visual Studio 2010 and 2012, the JavaScript editor supports displaying inline documentation for JavaScript things such as functions. However, Visual Studio didn't appear to ship with this ...
0
votes
0answers
87 views
Why am I not getting .css intellisense
Question: Why am I not getting .css intellisense while coding the HTML in Durandal ~/App/Views/###.html pages.
Steps to Recreate:
In Visual Studio Professional 2012 I've began an "empty" ASP.NET Web ...
0
votes
1answer
129 views
HowTo: Enable IntelliSense for MVC Razor in Visual Studio Express 2012
I installed Visual Studio 2012 Express for Web some time in early 2012, then I performed an update in mid 2013. Next, I started using the Orchard Content Management System. The problem is that ...
0
votes
1answer
71 views
Better intellisence for C++ [closed]
Is there any plugins for Visual Studio, or a different IDE altogether, that offers better documentation? Such as definitions of the functions, parameter lists, etc. I admit, C# has spoiled me, and I ...
0
votes
0answers
18 views
XML Documentation and Type Parameter Intellisense Inline - Automatic subsitution of the type with the type actually used
/// <summary> Selects Distinct Elements from a Collection </summary>
/// <typeparam name="TEntity"> Type of Item that is being compared.</typeparam>
/// <typeparam ...
0
votes
0answers
54 views
Link HTML File To Java Script File
Hey everybody I know this sounds like a bit of a newb question, but I am new to the concept of using an external Java Script file.
I am using Visual Studio 2012 to work on a HTML 5 website and I ...
1
vote
0answers
63 views
Injecting .cs file into msbuild works fine except the Intellisense (VS 2010)
This is what i am trying to do, but so far been unsuccessful. I have a WPF Project with some xaml classes. I have a msbuild task that creates partial classes with the same name as xaml classes but ...
8
votes
0answers
227 views
Custom Intellisense Presenter problems
I am creating my own intellisense presenter these days, and I have posted this thread and downloaded this editor sample.
After run the sample, I found some problems, but didn't find how to solve them.
...
0
votes
1answer
353 views
angularjs intellisense in visual studio
I've managed to get intellisense for the ng- directives in the HTML. I also get intellisense for most javascript files. However, I have no idea how to get intellisense for bits that are injected. ...
4
votes
2answers
257 views
CSS Intellisense not working for MVC 4 project in Visual Studio 2012 Ultimate
Have created a brand new Visual Studio 2012 Ultimate SP2 MVC4 project but unable to get CSS class selector intellisense to work?
When I type <p class="m" .... I should get the class "myClass" ...
2
votes
1answer
47 views
Precompiled headers, re-including files and Intellisense
I have a precompiled header that contains includes for various 3rd party libraries, e.g.:
#ifndef PRECOMPILED_H
#define PRECOMPILED_H
#include "booststuff.h"
#include "luastuff.h"
#endif
Where ...
2
votes
0answers
63 views
VS2012 how to show documentation of standard C++ libraries via IntelliSense?
I started learning C++ a few days ago using Visual Studio 2012. I'm used to programming Java with IntelliJ IDEA and there you always get shown the documentation and expected arguments when calling a ...
0
votes
1answer
37 views
Eclipse intellisense with gradle
when I edit build.gradle file in eclipse I want to have intellisense to help me of words completion. How can I do that?
0
votes
1answer
96 views
Intellisense not helping
I am writing some code for a Windows application and things are going alright except for the IntelliSense doesn't give me options in some click event scope. Surprisingly, when I code it without its ...
1
vote
0answers
25 views
How to get current used color theme of Visual Studio2012
I'm creating my own IntelliSense Presenter, since Visual Studio2012 support change theme, so I want my background color of the presenter can be auto-changed when the theme been changed. Is there a way ...
1
vote
1answer
123 views
Intellisense after VS 2012 update 2 insane slow
After updating my VS 2012 to the update 2, while working in a XAML Editor, I have to wait about 2 seconds for each key. The difference is only if I press CTRL + SPACE, when the Intellisense window ...
0
votes
1answer
26 views
Mvc4 Website builds, but Error List is populated when viewing Razor files
I have an Mvc4 website that builds and runs just fine, but each Razor content page is filled with errors when viewed in VS2012. I get errors that the model keyword and ViewBag object don't exist, and ...
0
votes
0answers
30 views
Cant get intellisense working in my xml file in VS2012
I have this xml file
<?xml version="1.0" encoding="UTF-8"?>
<ElementStructure xmlns="http://www.composite.net/ns/management/trees/treemarkup/1.0" ...
3
votes
2answers
88 views
VB.NET vs C#: Anonymous types and intellisense
How come when do this in C#...
var x = new { Name = "aaa" };
...I can get intellisense on .Name, but when I do this in VB.NET...
Dim x = New With {.Name = "aaa"}
...I get no intellisene on .Name?









