Hi Phil, I have just got Beta 2 and AFAIK from what I have read in the last weeks on ... I think so. As a general rule, the add-ins for VS.NET 2002/2003 should...
Hi Tom, Some tips: - There is more than one "View" command bar in the DTE.CommandBars collection, at least two, and they have the same name. Ensure that you...
I can only answer the last question. ... Probably yes. From what I've read, this is the only way how you can register unmanaged add-ins. I'm however using...
... the ... Yes, there is a documented service called IComponentChangeService that you can get from the IDesignerHost, and that has a set of events that can...
Thanks man i got the events. I am also wriring the cod here if some one needs it in future then it may be handy: Just copy this whole code and put in the user...
Craig, The signature of the Click event of CommandBarButton of the new Microsoft.VisualStudio.CommandBars assembly is: Public Event Click(ByVal Ctrl As ...
Carlos, Thanks a ton for the tips. I'm just now have a bit of time to get back to work on this addin. I guess I was missing the QueryStatus() functionality....
I was too quick to send this email. I just figured it out by once again visiting QueryStatus() and realizing that that has the same string. Once I used that...
I want to automatically have my tool window appear amongst others in the group pane with Solution Explorer, Resource View, Class View, etc. Whenever mine is...
If you guys recall, I posted way back on a problem with linked files and sometimes not being able to retrieve their code model. Thanks to Carlos and based on...
I'm looking for some information on how to start experimenting with extending the way the Unit Test features work in Whidbey. Anywhere I can get my managed...
Hi, It does not seem a bug to me; it happens, for what I have seen, that in VS 2005 there is no longer a project file for a web project. In previous versions,...
Hi, I would like to encourage all of you to make a little effort to ensure that the VS 2005 extensibility model is free of the bugs that we all have identified...
Couldn´t you use the EnvDTE.Events.WindowEvents or EnvDTE.Events.DocumentEvents instead? The WindowActivated event, for example, gives you both windows. Best...
Hi Peter, ... So, using VS 2005 Beta 2, AddNamedCommand does not add custom bitmaps to the commands, is that what you are saying? ... How do you add a...
Hi Carlos, ... Not only it doesn't add custom bitmaps - it doesn't create the Command at all. After reading some posts on MS forums and confirming the problem ...
Hi Peter, I will have to take a closer look, but DTE.Commands.AddNamedCommand creates the commands for me using MsoButton = False and passing the ResourceID ...
Craig, I was secretly hoping it wouldn't come to this but your answer to use FileCodeModel is what I was expecting. I have a shared package source code base...
I need to be able to programmatically: 1. Open an HTMLDocument 2. Populate the document with text retrieved from a database 3. Detect when the text in the...
I was just able to reproduce that bug (KB 555256) on Beta 2. So, I guess I'm stuck. I'm gonna bring this question back from my earlier reply. Do you have any...
My addin written in C# is coming along pretty well now. I have a treeview that lists a subset of documents (.cxx, .c) files that are in the projects within the...
Hi, You will need to use the TextDocument, TextPoint, EditPoint and TextEditorEvents.LineChangedEvent of the EnvDTE namespace. To insert text into the document...