Ctrl+F3 - Finds the next occurrence of the currently selected text in the document. In both VS 2003 and VS 2005 this keyboard shortcut has stopped working for...
1. categories how do you put your commands in different category? 2. Kind of related: How do I not show my commands at all. I have some commands that I...
Hi, At least using add-ins (not sure about VS SDK packages): 1) You can't. All addins commands go to the Addins category. 2) Commands will always appear in the...
On the Solution interface, there's a "Microsoft Internal Use Only" IsDirty property. Maybe that is of use? -Duncan ... if a ... if the ... this, but ... build ...
My add-in needs to keep track of items selected in the Solution Explorer, so I've subscribed to SelectionEvents. This works fine for single file selections -...
Hi, I have completed authoring a VS.Net 2005 add-in and it works fine in my development machine. I want to know what are the steps required to package it,...
Dear all, I use an application to invoke Visual Studio.Net, set some breakpoints for the code and attach to my application. Could anyone tell me how I can...
Hi, this problem concerns VS 2005. I havn't tried it yet with VS 2003. My addin has a tool window (in VS 2005 with no shim control) which contains a grid...
I want to modify my addin's behavior based on the type of project that is open. I know how to test for a C# project, but this test fails if the project is an...
This book is supposed to be on MSDN but I can't find it. Does anyone know where I can get the PDF? I also tried ordering it from Bookpool and they said they...
No. VS 2005 lets you mix languages within the same ASP project, so you can have VB.NET and C# in the same project. Of course, it's a fair bet, that only one...
See the Books section of my web site http://www.mztools.com/resources_vsnet_addins.htm so see the several ways to get that book. Best regards, Carlos J....
... Once I know what language it is, I want to know if it's an ASP.NET project. Is there an easy way to determine this without searching through the files...
For VS 2005 Web Site projects, get if Project.Object is of type VsWebSite.VsWebSite (you need to add the VsWebSite.Interop assembly) For VS 2005 Web...
... You can use the Project.Kind property, which returns a UUID. Some of the possible values are given in VSLangProj.PrjKind, but this is only VB project, C#...
Hi, just for info, I have completely failed to hook into the F3 keypress, but have found it easy to hook into the "Edit.FindNext" command, which is usually the...
Hi, please excuse me for asking a visual studio question which (probably) has nothing to do with Add-Ins. Recently, the bitmaps in toolbox window have almost...
Hi, it is tricky, but possible to hook such keys if you use shim control (evenv with VS2005). You need to change the key processing routines of the shim. ...
Hi, again, just for info. I have copied the feature for which I wanted to use function keys to the VS 2003 version of my Add-In, which of course uses a shim...
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...