If you create a new project, you link an existing .cs file and you save the project, the .csproj file includes de Subtype="Code": <Files> <Include> <File ...
I can easily create a brand new project with a linked file where .csproj file would not have SubType entry. I could basically: * create a new library * remove...
I have tried to reproduce it with those steps to no avail. Anyway, for those cases when you get an empty Subtype, you can check the extension of the file. If...
Hi. I'm trying to open Tools>Options dialog. I know, I can use DTE.ExexuteCommand("Tools.Options", "") But it opens options category, that was selected last...
Hello, I've separated my GUI for my Shim into a Windows Control Class. The forms of this panel display with no apparent problems. (I did this so I could do...
A user of my Add-In has sent me an error report, where an exception of type System.Runtime.InteropServices.COMException with the error description "Unspecified...
... Let's see if we have understood... ... Do you mean a Windows Control LIBRARY instead? If so, I dont recommend to separate the GUI of the add-in in a...
Hi Phil, I have not experienced (yet) the "Unspecified error" COMException using the TextSelection object, but some user of mine has reported it when using the...
Hello, I worked out these problems. Actually, using a UserControl has worked out beauifully ... just a matter of working out the dependencies as you stated. I...
Hi, Im trying to do some add-ins for VS2005 Express Beta1. From what i understand by reading some posts on this list its actually not disabled, but not every...
You can do it for the currently released beta version of Express, but in future betas and the final shipping product you will not be able to. Craig ...
Hi guys: I am here with a strange problem which is not reproducible on all the machines. I have an add-in using the VSUserControlHost which crash the VS.NET...
I have never heard of such issues, but there are a couple of things that you can try: 1) Try to guess if the crash depends on the hosted .NET user control...
Hello, I'm current investigating how to leverage the DTE and/or VSIP to create Stored Procedures in VS.NET 2003 ... I've done a little reading in VSIP and it...
Without resorting to VSIP and new document types, you can create an add-in that creates a toolwindow that can be behave as a docked window (or floating) or as...
Thanks ... I think I'm understanding ... I'll think some more about that ... now ... wouldn't that toolwindow always be in memory after creation? Also, is...
Yes, toolwindows always stay in memory after creation. When you close them, you are only hiding them really. I am not familiar with VSIP yet, sorry. Best...
Carlos, That's cool. You were helpful with what you've said so far. If I move that direction, I'll try to write up how I did it. Matthew ... No virus found...
Yes. Im fully aware that of that fact. The thing im actually wondering about is how you create a plugin and how you "register" it in Visual Studio. Daniel...
Thanks Carlos. I have found the problem finally. I had in my User control call to Application.EnableVisualStyle() & then DoEvents() which results in crash at...
I was just able to reproduce it. File|New|C# Windows Forms Application. Save and close the solution. Examine the C# project file. AssemblyInfo.cs file entry...
Thanks carlos, Earlier I had tried to add (embed) the manifest in the addin assembly and it did not work. It did work for my stand alone tool though. Putting...
Hi, I have just read the interesting article "Improving performance on Localized Forms" http://windowsforms.net/articles/localizationfilter.aspx and am...
Hello! I'm developing (http://nemerle.org/blog/archive/2004/Dec-16.html) VS language service for Nemerle (http://nemerle.org) language. I have successfully...
Kamil Skalski
kamil.skalski@...
Dec 19, 2004 10:53 pm
2179
Has anybody had success in getting an icon/bitmap to be displayed in a toolbar created in an Add-In? I have tried using the AddNamedCommand function as well as...