I'm trying to create an add-in but I can't seem to get the debbugger to work. I developed an app and when I hit f5 I get a new VS.net instance but no add-in is...
Hi hun, ... All you should need to do in a case like this is open the Add-in Manager (on the Tools menu) and chck the box to load your add-in. If you set a ...
So from beginning to end (end being me at a break point) should be.... Open up a new add-in project. Complete the wizard describing my project. Set a...
Hi Jerrad, ... That's about it. You do also have to make sure the add-in is registered with Visual Studio .NET (unlike previous versions, VS.NET doesn't have...
Hiya, We've an (unmanaged C++) Visual Studio NET 2002/2003 add-in which adds a couple of pages to Visual Studio's Options Dialog. That all works fine, but we'd...
Hi all, My customer asked me to find what is the best solution for obfuscators or other tools to protect .NET assemblies. I did evaluate several including...
Hi Shamil, We are using Xenocode (http://www.xenodcode.com) which is fully configurable in that you can specify the extent of the obfuscating down to...
Currently, our add-in works in VS 2002 and VS 2003. I'm trying to make it work also in VS 2005. No separate build, one version for all 2003, 2003 and 2005....
Hi Peter, When we asked Microsoft about using an addin developed in 2002 in 2003 they said there should be no problem but could not say the same for 2005 as...
I've found a pretty simple but efficient solution: Window win = applicationObject.Windows.Item (EnvDTE.Constants.vsWindowKindFindResults1); TextSelection sel =...
Hi Andy, Thank you for your advice! I did download and I did evaluate XenoCode this morning. It worked OK and it was easy and intuitive in use. It's purchased...
I have at last been able to display a toolbar button for my AddIn for Visual Studio .NET 2003. However when I click on it then after the AddIn has executed...
... Two things to check. What's in the implementation of your QueryStatus() function in your add-in? That is where an add-in tells the environment whether a ...
Hi, Through my extension dll, I would like to disable all the break points and re-enable them later. Currently I am doing that using EnvDTE interface (VSA...
Thanks for the answer, Andy. Separate version seems to be the way to go. I wanted to avoid it since all versions will be exactly the same. Using separate build...
I'm writing an add in that will add a method to a class that already exists. Is there a way to do this? I know how to create a brand new code file with ...
... Yes, our product does this. Look for FileCodeModel in the MSDN help. This is a hierarchy of objects that will help you find where specific definitions are...
Has anyone out there successfully used VCProjectEngineEvents to catch project events (ItemAdded, ItemRemoved etc.) on Visual C++ (VS2003) projects? Although...
Ok, i'm trying to debug my add in and when I hit f5 it builds and then up pops a new vs.net <http://vs.net> instance. But the add-in isn't loaded and isn't...
I created an addin for VS and wanted to create a new menu in the main menubar, next to the tools bar. I used the following code, but my new menu will not...
I wrote an Add-in for VS.NET 2003 that is throwing the following exception: The exception "UnauthorizedAccessException" has occurred in "mscorlib" Additional...
Make sure you have installed your add-in. This will add entries into the Window registry that will let VS.net know there is a new add-in for it to load and...
Thanks... I didn't figure in the registry thing. I figured if I actually did a setup on it that it would interfere with future debugging. ... [Non-text...
Try adding menu.Visible=True after creating it. Best regards, Carlos J. Quintero MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET You can code, design...
How should a new test suite be created if you select an assembly and expect it to stub the test out for you? When I write my test stuff I have it set up like...
I'd like to be able to create projects and add them to a solution. I also need to iterate through them and find csharp files in them. [Non-text portions of...
Hi, You can use EnvDTE.Solution.AddFromFile or EnvDTE.Solution.AddFromTemplate. Check the docs. To iterate you use Solution.Projects. The language of a...