3
votes
4answers
66 views
Visual Studio Intellisense not showing methods on generic overload
Given the following two interfaces (these are small examples, not my actual implementation):
public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAss …
2
votes
4answers
129 views
C++ IntelliSense ‘auto’ feature? Where is it? How to get it ‘on’?
I would like to enable the IntelliSense 'auto' feature (like the Visual Studio C# 2008 Express) but I am using Visual Studio C++ 2008 Express Edition and in the Tools > Options > T …
0
votes
2answers
27 views
Using Intellisense in Visual C++ 2008 Express. Intellisense for one project not available when editing file in another project.
I have a multiple vcproj solution going and it seems that no other project's intellisense information is available when editing a file in another project. However when I'm within …
0
votes
1answer
66 views
visual studio intellisense error
template <typename T>
class Test {
friend Test<T> & operator * (T lhs, const Test<T> & rhs) {
Test<T> r(rhs);
// return r *= lhs;
…
1
vote
1answer
34 views
Intellisense for C# User Control in VB.NET project
Hello,
I have created a C# user control which I want to use in VB.NET .. the control works fine, but in VB.NET the Intellisense does not show any of the C# user control function d …
3
votes
6answers
257 views
emacs completions or IntelliSense the same as on Visual Studio
emacs 22.2.1 on Linux
I am doing some C/C++ programming using emacs. I am wondering does emacs support completions (IntelliSense in Visual Studio).
For example when filling struc …
0
votes
1answer
29 views
No intellisense in XAML
I'm no longer getting intellisense in my XAML. Not too long ago, I changed some settings within VS 2008. I believe one of them had to do with auto-loading the toolbox. Secondly, …
2
votes
3answers
132 views
Why does the compiler find this ambiguous?
In my base class I have a generic method (ideally this would be a property, but you can't have generic properties) and a non-generic property, both with the same name:
protected s …
0
votes
2answers
50 views
Visual studio (2008) integration - intellisense and colourizer
Hi Guys,
So I'm now about to look at getting visual studio integration working for our port of the Less ruby library: www.dotlesscss.com. This is basically a CSS preprocessor tha …
3
votes
4answers
438 views
Long load time in Visual Studio for Large Project
Is there a way to turn off intellisense in Visual Studio 2008? I know about deleting a DLL to turn off intellisense in C++, but that doesn't work for C#. I also know about the pr …
0
votes
1answer
18 views
Jquery and Intellisence in VS 2008 with hotfix and SP1
I followed Scott Guthrie's instructions
as outlined atL
http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx
but no avail: intellisence still doe …
0
votes
1answer
45 views
Does vim provide tiered intellisense support through phpdoc?
The one thing I really miss in vim is a tiered intellisense support, just like we have one in PHP Eclipse.
For example:
/**
* Get the config object
*
* @return Config
*/
publ …
0
votes
2answers
43 views
asp.net intellisense inside script tag <%
in a web form I'm trying to get intellisense within a script tag BUT within some inline .net code
Running vstudio 2008 / c# / .net 3.5 / vista
<%@ Control Language="C#" AutoEve …
4
votes
2answers
250 views
Is there a MATLAB editor/plugin/version with better code completion?
Comparing Visual Studio code completion with MATLAB R2008b 7.7 there are a few important features missing in the last one:
Local variables completion
Function, for, if auto ENDin …
1
vote
2answers
121 views
visual studio 2010 beta 2, javascript/jquery intellisense not working
has anyone experienced a similar problem? ive recently upgraded my solution to 2010 beta 2 and now i have lost javascript/jquery intellisense support, it worked fine with visual st …
