Hi, When using C++ projects extensibility, given a VCProject, how can I get the EnvDTE.Project?. The VCProject.Project property seems to return itself, so it...
Hi, I have added support for Ada using VSIP 2003 and I have to extend the features further. I was wondering if it would be better to migrate to 2005 or stay...
Hi I have a file called myfile.aedb in my project. i have provided a tool window for editing this file. ie my own user interface. basically it is an xml file...
Do you mean time zones? I have some code somewhere that does that... ... From: vsnetaddin@yahoogroups.com [mailto:vsnetaddin@yahoogroups.com] On Behalf Of...
A button with flatStyle=System on a tabControl on shim stucks VS.Net when clicking on it. Clicks work fine when I set flatstyle=Standard or put the button ...
Hi, I have added a support for Ada language in VS. Now I want to add a support for a new project type in VS, so that I can load and edit and compile those...
Hi, is there a way to read the HTML source code of an ASPX file via EnvDTE, similar to using the FileCodeModel for code files? Of course, I could open the file...
Hi, is there an easy way to recognize an ASP.NET project? To my surprise, it does not seem possible to detect an ASP.NET project using the Project.Kind ...
Hi Phil, The Project.Object property should return a VSWebSite or similar for Web projects. Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for...
Yes, the issue sounded familiar. I assume that you are using a Usercontrol, right? I reviewed my source code and found this: ' PATCH: in the following...
Now I use Visual Studio .NET Code Generator in Visual Studio 2003. (http://www.raboof.com/Projects/VsCodeGeneratorShim/VsCodeGeneratorShim.aspx) Do you know...
Try this code. Some things like TimeZoneCollection you will have to replace with ArrayList or something else: ... [StructLayout(LayoutKind.Sequential,Pack=2)] ...
... which takes the values ... http://tinyurl.com/96kph). Ah, yes, I forgot that. ... Ummhh, I guess that you are not using VS 2005. In VS 2005 ASP.NET...
For anyone who needs to do this: we used the following small console program. Then paste the text in the produced .txt file into the AboutIconData element in...
Hi, I need to open a Window showing all the classes that implements an Interface I have defined before. Now I can do this but with the Solution property, so I...
I have 3 menus with events and I am getting really weird results on menu events. All menu events are firing on any single menu click. Here is the relevant...
Hi Daniel, I suppose that you are not using the code model: given a ProjectItem, use ProjectItem.FileCodeModel.CodeElements to get the code elements...
I've been there. See if it is this one that I reported: Bug Details: CommandBarButton.Click event fired for the same button on unrelated event handlers of...
I'm working on an addin that lists the C++ functions in a file for a code analysis project. I do not however want any of the functions declared within a macro ...
Hi Bob, The CodeElementFromPoint function is not reliable. You have to use a top-bottom approach navigating the code elements recursively until you find the...
Hi I have exported a project template using VS 2005. It has been automatically copied to my user profile location. I need to make it available for all the...
AFAIK, apart from the VS location for builtin templates, VS 2005 searches in the folders specified in Tools, Options menu, Projects and Solutions node. So,...
Hi, I'm looking at the "How to: Create Custom Tools Options Pages" section in the msdn on using a control library to provide an Options dialog. It mentions you...