intellisense

Visual Studio 2015 / VB.NET Intellisense not showing EVERY methods/variables

空扰寡人 提交于 2019-12-24 00:36:09
问题 First time for me here ! I have an issue with Visual Studio 2015 Enterprise. When, for exemple I enter the line for a form : WaitingTickets.(list of methods/properties) Missing Stuff I get some, but not all . For exemple, it doesn't show WaitingTickets. Show() in the list. Same with public variables, the list doesn't show public variables between forms. The fun thing is, on one computer it work perfectly, and on this one it doesn't. No modification where done. I tried the resetsettings,

Intellisense keeps showing errors while build is successful Visual Studio 2015

北慕城南 提交于 2019-12-23 22:07:29
问题 So I'm working on a Xamarin project and suddenly Visual studio 2015 started freaking out it shows error red lines under every thing nearly for example : InitializeComponent(); in every page is red lined ,the project builds and runs without error, the errors are coming from Intellisense only I looked for a solution on the net many posts talked about this issue but none had a working solution for me. so here is what I tried: 1)deleting the .suo file 2)deleting xamarin temp folder (and

Incorrect IntelliSense XML generated for F# record values (VS2013)

亡梦爱人 提交于 2019-12-23 21:00:20
问题 Update: as noted in the comments, this is a bug. I've reported it to Microsoft and it has been routed to a VS development team for investigation. I'll update this answer if and when there's news. Further update: a fix has been committed to the project on CodePlex, yay! Given a record type: namespace Rather.Deep.Namespace type TestRecord = { /// Property summary Prop : string } VS2013 generates the following IntelliSense XML for this field: <member name="F:Rather.Deep.Namespace.Rather.Deep

Intellisense for CLR projects - No Intellisense for e.g. System.Windows.Forms

主宰稳场 提交于 2019-12-23 20:10:54
问题 I've been following two tutorials on some Visual C++ fundamentals but they all seem to lack the information on how I get the intellisense going in Visual Studio 2010. The following code snippet is what I have #using<mscorlib.dll> #using<System.Windows.Forms.dll> using namespace System::Windows::Forms; int main() { MessageBox::Show("ohai!"); return 0; } I would like to be able to just write MessageBox:: and the press ctrl + space and get a nice view of the Methods and properties. But it seems

Intellisense for CLR projects - No Intellisense for e.g. System.Windows.Forms

时光怂恿深爱的人放手 提交于 2019-12-23 19:50:27
问题 I've been following two tutorials on some Visual C++ fundamentals but they all seem to lack the information on how I get the intellisense going in Visual Studio 2010. The following code snippet is what I have #using<mscorlib.dll> #using<System.Windows.Forms.dll> using namespace System::Windows::Forms; int main() { MessageBox::Show("ohai!"); return 0; } I would like to be able to just write MessageBox:: and the press ctrl + space and get a nice view of the Methods and properties. But it seems

VS Code intellisense remove some suggestions

爱⌒轻易说出口 提交于 2019-12-23 17:59:09
问题 The situation is that in VS Code when writing code intellisense is giving some suggestions that I don't want to see. For example in Sass when I write "he" I would love to hit tab and see "height" but instead it is giving me "head" (hehe). Is there a way to remove some phrases from suggestions or at least change their order? I tried to edit: C:\Program Files (x86)\Microsoft VS Code\resources\app\extensions\scss\syntaxes\scss.json but apparently it does not change anything. 来源: https:/

Can intellisense be enabled in VS2008 within preprocessor directive blocks like #ifndef … #endif

混江龙づ霸主 提交于 2019-12-23 12:31:39
问题 While working within C++ libraries, I've noticed that I am not granted any intellisense while inside directive blocks like "#ifndef CLIENT_DLL ... #endif". This is obviously due to the fact that "CLIENT_DLL" has been defined. I realize that I can work around this by simply commenting out the directives. Are there any intellisense options that will enable intellisense regardless of directive evaluation? 回答1: By getting what you want, you would lose a lot. Visual C++ IntelliSense is based on a

Visual Studio Intellisense methods with underscore don't appear

廉价感情. 提交于 2019-12-23 11:01:51
问题 I'm using VS2012, and one of my project-wide Javascript function namespaces has all of its exposed methods beginning with underscores _ , for example: var NameSpace = { _aMethod = function () { }, _anotherMethod = function () { } }; I created a quick vsdoc file for the namespace, and the namespace itself appears, but none of the methods do . NOTE: If I remove the _ at the beginning of the methods, it works like a charm. // This would work, and show up in the VSDOC var NameSpace = { aMethod =

Visual Studio Intellisense methods with underscore don't appear

人盡茶涼 提交于 2019-12-23 10:58:22
问题 I'm using VS2012, and one of my project-wide Javascript function namespaces has all of its exposed methods beginning with underscores _ , for example: var NameSpace = { _aMethod = function () { }, _anotherMethod = function () { } }; I created a quick vsdoc file for the namespace, and the namespace itself appears, but none of the methods do . NOTE: If I remove the _ at the beginning of the methods, it works like a charm. // This would work, and show up in the VSDOC var NameSpace = { aMethod =

Visual studio 2010 colourizers, intellisense and the rest. Where to start!

柔情痞子 提交于 2019-12-23 09:32:13
问题 Ok, before I begin I realize that there is a lot of documentation on this subject but I have thus far failed to get even basic colourization working for VS2010. My goal is to simply get to a point where I can open a document and everything is coloured red, from here I can implement the relevant parsing logic. Here's what I have tried/found: 1) Downloaded all the relevent SDK's and such- Found the ook sample (http://code.msdn.microsoft.com/ookLanguage) - didn't build, didn't work. 2) Knowing