add-in

How to access selected project in Solution Explorer from a Visual Studio Add-In?

I developed a VS 2008 add-in and added a custom menu item to context menu for "Project" nodes in Solution Explorer. This allows me to right-click any project in solution and perform a custom operation on that project. Or at least, it would, if I knew how to access the selected project from my Click event handler. Can someone with more ...

Why is word as a background process via outlook addin stealing focus?

I'm deploying an Outlook 2007 add-in being created in Visual Studio 2008 using C#. I've created a function to extract text from a word document. The problem is that about 20% of the time, this will temporarily grab focus and give it to my addin. I sat and watched sysinternal's process explorer for about 10 minutes while my add-in wa...

Add-in for Visual Studio 2010

I am just about to get used with Visual Studio 2010 right now. So could you mention visual studio add-in that is ready for Visual Studio 2010? ...

Keyboard Shortcut for Smart Tag in Refactor!

I am trying to get Refactor! for ASP.NET, CodeRush Xpress and Resharper play together. I installed Resharper, then CodeRush Xpress and then Refactor! for ASP.NET. I can't seem to get any menu options for Refactor! or CodeRush. The bracket highlighting is working so I know that it is loading, but the smart tag will not appear (the thre...

Are there add-on libraries or tools available for ASP.NET MVC development?

My first experience with ASP.NET MVC and the Entity Framework has raised my interest in this framework and I would like to implement some basic applications, covering the basic requirements of real-world web applications. So far the support given by VS 2008 is already impressive. For some areas however, it might be a time saver to use ex...

Does anyone know of a free tool to integrate Reflector with Visual Studio, besides TestDriven.NET?

Dear ladies and sirs. I love the Go to Reflector menu option installed by TD.NET. However, TD.NET is not free for commercial use and so I do not have it at work. I am wondering if there is another tool out there that does just that - allows to jump to Reflector from the source code in VS and which is totally free. I know it is possibl...

How to install a plugin or add-on with WiX

Hello, I need to install plugins (or add-ons) to an application we write. I user WiX for the installer of the application. A plugin is, in my mind, an optional part of the application. It needs to integrate into the file-system structure of the application, but it can also be added later, even by someone who does not have control over th...

SQL Server CE + Addin Read and Write Collision Avoidance?

We have an Office Addin that uses Sql CE with the usual DBConnection to a *.sdf in the filesystem ('C:/...etc...'). When we start two copies of the application having the Sql CE-augmented Office Addin (testing what a user might do by mistake) the Sql CE database becomes corrupted and the Office Addin can no longer access its data. It...

Installing .Net Add-in for POS 2009

I'm working on writing a WiX project to install a .Net Addin that is built for Microsoft POS 2009. During the development of the project, you had to run the command: AddinUtil.exe -PipelineRoot: {directory to the Addins folder for POS 2009} so that POS 2009 would recognize your Addin. Now that I'm getting ready to do the depl...

word addin not loading on second word document

Howdy, Ive written a word addin in VS 2008 thats pretty simple, just adds a commandbar and a couple of buttons. The addin loads and works fine for the first document that is opened. When I open a second and subsequent documents, the addin does not load. Please ask for anymore info if needed. Happy to provide. ...

Writing an Excel Addin User Guide

I've created an addin for Excel containing a number of different functions. Now, I need to create a user guide (a set of webpages will suffice) defining what the functions do; their inputs and their outputs. Are there any tools that will help me do this? Has anyone seen any good examples recently, or shall I just mimic Excel Help? ...

Source file not refreshing

Hello, I am trying to create a Visual Studio 2008 add in, so I have created a Visual Studio Add in Project, pressed F5 to see it run an the icon for my new add in appears at the top of the Tools menu. So after stopping the execution I made a few changes to the source code and pressed F5 again, no changes what so ever and no debugging ...

How to get excel version from c++ add-in

I have a c++ unmanaged project whose output is an .xll file which is an add-in loaded by excel at startup, this add-in can work with both versions, excel 2003 and excel 2007. Now, what I need to do is to obtain the version of the excel instance that the user is actually using for working with my add-in. Does anyone can suggest me how t...

Outlook Add-in VSTO DASL question

In my Outlook Add-in I want to be able to filter my default calendar for appointments that have the following criteria: all-day events = true reminders set = true I have figured out how to use DASL to search for those items, but how do I get the calendar view to show those filtered results? Here is the code I have so far: internal...

Visual Studio Add in to Add Tracing

I was looking to write/get a visual studio addin. I want to be able to write descriptive log calls at the top and bottom of a function. like this log.debug("TheClass.TheMethod(string TheStringParam ="+TheStringParam+") - in"); log.debug("TheClass.TheMethod(string TheStringParam ="+TheStringParam+") - out"); Is there an adin that do...

Not a valid Office Add In

I developed a new office 2007 addin using VS 2008 and VSTO. after this i go to Office->Excel Options->AddIns->COM AddIns and GO.. If i select the .dll which i ve created i get an error that " not a valid Office Add In." If i run it using the visual studio 2008 at my development machine, it works fine and i see the addin. I searched s...

Replacing Word's Open File Dialog in a COM Add-in

I'm writing a Word COM Add-in that replaces the Open & Save dialogs with my own. For the save dialog, I'm handling the documentBeforeSave event from the application events. This works fine. For the open dialog, there is no such event, so I'm currently handling the onClick of the Open... menu item, canceling the default handling. This...

What ClearCase plugin to use with Visual Studio 2008 SP1

At work I have to use ClearCase v7.0.1.2 and ClearQuest v7.0.1.0 with Visual Studio 2008 SP1. Am running on a Windows XP SP2 box. I've done some searching but not found an official installer yet, can anyone advise (provide a link to) on the best plugin/addin to install for Visual Studio 2008 integration? Thanks ...

Plugin Framework - can there be too many addin assemblies?

Hi, The product I'm working on needs to be built in such a way that we have a quote engine driven by a pluggable framework. We are currently thinking of using MAF, so we can leverage separation of the host and addin interfaces for versioning. However, I'm concerned that we'd have lots of assemblies, it's likely that we'd have one for ...

Excel autofill event in C#

I'm writing an Excel add-in using C# and need to be able to tell when users autofill cells. How can I catch the autofill event? ...