Hi, I know that this issue has already been dealt with, but I have never got it working 100% correctly. In principle, I think that I am loading a bitmap...
Hi Phil, The SetTabPicture function has several bugs and problems For VS 2005, use RGB = 255,0,255 instead of RGB=0,254,0. It seems that they changed it. See...
Hi Carlos, for VS 2005 using RGB=255,0,255 seems to fix the problem. For VS 2003 I am still having problems and I have played around with a few different...
Hi Phil, I have reviewed my code and certainly I am using different code for 2003 and 2005. The latter uses magenta as I said. About 2003 I use a resource dll...
Hi Carlos my code is based on a TransparentBitmap class which I downloaded from this group a long time ago. From the file header it is actually by you, and a...
Hi Phil, I call SetTabPicture before setting Visible = True, and I have a remark in the code that doing it otherwise causes the green background that you are ...
Dear Carlos J. Quintero i have tested your comment and iam sorry it doesnot work as expected . i have rather another solution add the following code to the...
To do that in the QueryStatus method is overkill IMHO.... Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio. You can code,...
On a related note, my Add-In for VS 2005 adds an item to the Tools menu, but its bitmap doesn't have a transparent background. As I recall, this was a problem...
I think that there is no difference, the background must be RGB=0,254,0. However, I used 16-color pictures for VS.NET 2003 and TrueColor or 256 color pictures...
Thanks Carlos, I have changed the background colour to RGB=0,254,0 in the bitmap in the satellite dll and it is now transparent. This has changed from VS 2003....
I don't think so, I have always used RGB=0,254,0 backgrounds and if a corner were used I would have seen green backgrounds. Best regards, Carlos J. Quintero ...
Hi Carlos, you are correct. On closer inspection, the background of my menu bitmap for VS 2003 was not transparent. The grey tone was just very close to the...
Can anyone help me figure out how to add a project template to the "Other Projects" category in the New Project dialog? I am not sure where VS is looking for...
Has anybody ever seen an error like this: System.BadImageFormatException BadImageFormatException.FileName appears to be an empty string. Description: Le...
Hello, I would like to create addin for vs2005 which will add automatically code to the start/end of each method in active document. I would appriciate you...
Hi Eran, Hi Eran, See my articles: 1) HOWTO: Adding buttons, commandbars and toolbars to Visual Studio .NET from an add-in. 2) HOWTO: Navigate the code...
Hello, I wrote some Tool Window add-in for Visual Studio 2005 that should process current active document and show results in tools' window. How could I catch...
Use the WindowEvents and/or DocumentEvents of the EnvDTE object model. DTE.Events returns them. Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins...
... Thank you for your answer. Unfortunately it doesn't give me any new information. Of course I inspected this items in MSDN before sending my question. But I...
Hello, Thank you very much for your answer. It's very interesting what you write and I hope I could use it. I'll try it in this week. Yours sincerely Evgeny...
Hi, I have just discovered that my Add-In doesn't reliably detect Smart Device projects in Visual Studio 2005. Specifically, I created a "Pocket PC 2003"...
Hi Phil, You are right, at least in VB.NET 2005 it no longer returns the VB-SmartDevice GUID but the VB guid, I have tested that my MZ-Tools add-in fails too. ...
hi, i created addin project and added some Items to menubars like Project menu, Tools Menu etc. for these items i added some funtionality and i used user...