intellisense

Visual Studio intellisense for Bootstrap via CDN

大兔子大兔子 提交于 2019-11-30 06:44:43
I've installed Bootstrap via the Microsoft CDN like: <head> ... <link href="//ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="//ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" /> </head> and <body> ... <script src="//ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/bootstrap.min.js"></script> </body> Everything is working fine with Bootstrap, however, Visual Studio isn't giving me any kind of intellisense for the classes. For example, typing <div class="(intellisense should open here)

Hide a C++ code block from Intellisense

試著忘記壹切 提交于 2019-11-30 05:16:19
In order to work around some Intellisense deficiencies in MSVC++ 2010, I would like to "hide" some code block from Intellisense, but not from the compiler. For example: #ifndef INTELLISENSE void foo(); // compiled, but skipped by Intellisense #endif I'm looking for the exact name of this INTELLISENSE macro, if such a macro exists; or an equivalent way to do the same thing. The proper macro for VC++ 2010 is __INTELLISENSE__ , as described in this blog article: Troubleshooting Tips for IntelliSense Slowness 来源: https://stackoverflow.com/questions/6496524/hide-a-c-code-block-from-intellisense

Is there an API in .net to read XML comment documentation file [closed]

自作多情 提交于 2019-11-30 05:05:19
In this question I see that microsoft ships the XML documentation files for the BCL. I wonder if anyone knows if there an API within .net that can be used to look this up at runtime. I know we can parse the files manually using the XML api. The use case is that we allow custom (read 3rd party) types/assemblies to be used in our system, and when selecting these in the UI, we'd like to extract the documentation as specified by the custom type/assembly creator or if not available provide other defaults. I maintain the Jolt.NET project on CodePlex and have implemented a feature that performs this

Why is IntelliSense support for C# lacking when compared to VB.NET? [closed]

随声附和 提交于 2019-11-30 04:54:59
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . For me, developing for the Java ecosystem payed the bills for many years. However, for several years now, I have been working

Visual Studio 2013 C++ IntelliSense shows suggestion but does not commit them by pressing any of the member list commit characters

a 夏天 提交于 2019-11-30 04:42:35
When I type in a C++ project , I get suggestion. I can commit the selected suggestion by hitting Tab key; But if I press enter or space or any of the member list commit characters : {}[]().,:;+-*/%&|^!=<>?@#\ , Intellisense doesn't commit the selected option. I want this suggestion to be committed with any of these characters, exactly as the default settings in C#. Open Options from menus: Tools -> Options Navigate to page: Text Editor -> C++ -> Advanced Scroll down to Intellisense section Change the option: Member List Commit Aggressive from False to True I had the same problem. I am using C+

Is there a way to get full IntelliSense for VBA in Access and Excel 2007?

房东的猫 提交于 2019-11-30 04:01:14
In VB.NET, the IntelliSense pops up as soon as you start typing which gives you a pretty full list of things you can use at that moment. The IntelliSense in VBA however, doesn't kick on for me until a period is put after the part you're using. For example, I go into the VBA editor in Excel 2007 and start typing the word " Range " but the IntelliSense doesn't come up until I type " Range. " after which it will give me a list of things I can use at that point. Is there any way to make IntelliSense come up sooner in the VBA editor, so that I'm able to see a list of things that can be used like

Why is Intellisense “Unavailable for C++/CLI”? [duplicate]

↘锁芯ラ 提交于 2019-11-30 02:29:52
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: No IntelliSense for c++/cli in visual studio 2010? As the title already states, nothing gets popped up or syntax checked. In the status bar, the following message is displayed. Intellisense 'Unavailable for C++/CLI' Usually I am using native C++ in Visual C++ 2010 Express. In Visual C++ 2008, Intellisense was working correctly for C++/CLI, so I guess it should be working in this version too. 回答1: The

How to get parameter hints/completion in Visual Studio?

折月煮酒 提交于 2019-11-30 01:19:29
问题 I usually use Eclipse for coding, which has a pretty nice parameters completion feature: when you are calling a method, just after you typed ( , it will show you the list of parameters, and highlight where you are as you type: How can I get similar help in Visual Studio 2012? I know that Ctrl + K, Ctrl + I shows some info about what your cursor currently highlights, but it doesn't work if you already have started typing something. If I type MyMethod(arg1, and then hit the shortcut (or any

How to write a Visual Studio extension for a template or markup language that supports embedded code snippets

假装没事ソ 提交于 2019-11-30 01:19:21
问题 Is it possible to write an extension for Visual Studio 2010 that provides syntax highlighting, intellisense, outlining, etc for a custom template or markup language supporting embedded code snippets , similar to the tooling for Razor in ASP .NET MVC 3? Can this be done without using private APIs, without access to Microsoft-internal documentation and, most importantly , without having to reimplement syntax highlighting, intellisense, etc. for the embedded programming language (i.e. C# or VB)?

Is there a way to suppress Intellisense errors when using C++11 features specific to November 2012 CTP?

别等时光非礼了梦想. 提交于 2019-11-30 01:08:36
问题 My code compiles and runs just fine (so far...), however, because Visual Studio's Intellisense doesn't yet support the C++11 features new to the 2012 CTP's compiler: Having chunks of perfectly good (albeit experimental) code underlined red tends to throw me off a bit. Is there a way to tell Intellisense to ignore errors in specific places? Can someone recommend an IDE that already offers proper syntax highlighting and checking for these new features (specifically, delegating constructors,