Most voted "intellisense" questions
Intellisense is a Visual Studio feature that suggests add-ons to the code in the drop-down menu while you’re coding. Helps reduce the time spent typing and avoid introducing typographic errors into the code.
Learn more…12 questions
Sort by count of
-
7
votes1
answer492
viewsHow do Visual Studio recognize the 'use Strict' directive?
Apparently Visual Studio does not recognize the directive 'use strict', because I typed the code below that assigns value to a variable that has not been declared (something prohibited in Strict…
javascript visual-studio-2013 intellisense use-strict ecmascript-5asked 10 years, 11 months ago Zignd 6,741 -
6
votes0
answers318
viewsError "Intellisense: 'No Additional information available'" in Visual Studio 2012
Today my computer crashed (because of Google Chrome! ) and I needed to restart it. Visual Studio 2012 was open at the time (and I lost a few lines of code that I hadn’t saved). The problem is that…
-
3
votes0
answers138
viewsBug Intellisense VB6 (Visual Basic 6) when referencing DLL C#
I have a DLL in C# which is used in applications VB6, but whenever it DLL is referred to in the intellisense gets bored. See below the difference in first image without reference to DLL…
-
3
votes1
answer102
viewsjquery Intellisense does not work in VS2015 Community
I can’t make it work at all. Man _references.js /// <autosync enabled="true" /> /// <reference path="bootstrap.min.js" /> /// <reference path="jquery.mask.min.js" /> ///…
-
2
votes1
answer103
viewsHow to turn off Visual Studio 2013 Intellisense for Text Plan only?
I need to edit a text file in Visual Studio 2013, but the Intellisense keeps bothering me like this: By squeezing space for the next word is "Troque object leitor de DVD" and it is unproductive to…
-
1
votes0
answers56
viewsIntellisense - Visual Studio
Hello I am developing a VB application with two forms, the first frmCadastroEndereco, to record addresses in the database, another of customer registration. Use also a module (modEndereco) that…
-
0
votes1
answer210
viewsIntellisense Xamarin Forms does not work - Visual Studio Enterprise with Update 3
I installed VS with Xamarin but Intellisense in XAML files is not working properly. In some parts of the code it shows the list of suggestions as image below. But in other parts of the code it does…
-
0
votes1
answer534
viewsIntellisense does not work
I’m using visual studio 2010 and all of a sudden Intellisense has stopped working. I already hung up and turned the computer back on, restarted the settings of visual studio, I’ve done…
-
0
votes0
answers311
viewsAngularjs autocomplete visual studio code
I’m creating an API for Angularjs and know that in vs code you can write a d.ts file that defines types and other things in the IDE. I already created this index.d.ts for autocomplete and it worked…
-
0
votes0
answers487
viewsVisual Studio does not auto-complete anything
I’ve always used visual studio and never had any problems. I have the community 2017 version installed, and I was using normally, however, I had to pause the development I had been doing. Now that I…
-
0
votes1
answer56
viewsIntellisense python
I’m learning to program in Python and is recurring in the following situation (this occurs in FDI pycharm, Atom and Spyder): I imported the matplotlib as follows: import matplotlib.pyplot as plt…
-
0
votes1
answer51
viewsIntellisense in the return of Javascript function in Vscode
How to make Vscode show the Intellisense in callback using method Map.prototype.get? Code: function tanque(altura){ this.altura = altura; } let objMap = new Map(); objMap.set('7101', new…