add-in

How to: compile generated C++ source files?

Hi, so I'm writing a VS2008 C# Add-In to automate AspectC++ weaving in C++ projects. I'm generating the C++ source files (now woven with aspects), but I can't figure out how to compile them as part of the pre-build step. Is there a convenient way to specify new source within the IDTExtensibility2, EnvDTE90, or VslangProj90 namespaces? ...

.Net Add-ins and versioning

Our media center add-in is shipped as a single DLL which lives in the GAC (mediabrowser.dll), we allow users to write extensions for our add-in by referencing our DLL and accessing the pre-defined extensibility points. On load we search through a plug-in directory, load all the assemblies in the directory, search the assemblies for a t...

"in-line find" plug-in for Visual Studio

Is there a plug-in (or built-in feature) for Visual Studio 2008 to be able to do a quick in-line find in your code? I am unhappy with the find feature (Ctrl+F). I don't like how it pops up in its own window. I think it would be much better if it was more like the Firefox find. (Try Ctrl+F in Firefox). I like how you start typing and it ...

Can I add a custom "Send" button to Outlook?

I'm creating a secure message alternative to email for my organization. We exchange confidential patient information with outside treatment providers. To protect privacy, we cannot use email for this purpose. Rather than force the users here to use whole new inbox, outbox, and authoring interfaces in addition to the Outlook/Exchange e...

How to connect a new query script with SSMS add-in?

I'm trying to create a SSMS add-in. One of the things I want to do is to create a new query window and programatically connect it to a server instance (in the context of a SQL Login). I can create the new query script window just fine but I can't find how to connect it without first manually connecting to something else (like the Objec...

Control AppDomainSetup when activating AddInToken within AddInProcess

In .net, one can create an AddIn within a new AppDomain. The creation of new AppDomains is nothing new, and one can use an AppDomainSetup class to specify all the startup parameters (such as where to find the app.config) of the newly created AppDomain. However, when activating an AddInToken using a new AddInProcess (which specifies that ...

MS Outlook - extending forms automatically

I need to develop the Outlook Extension capable of extending existing forms with tabs, downloaded from remote server. For example, in the appointment form additional tab should appear. Form definition in this tab is downloaded from a web service and rendered using, say, WPF. Data for this tab is also coming from server, and is bind to th...

MSN Messenger Add-in

Hi Q1. I read that Add-ins are no longer supported in MSN Messenger, on the other hand i see articles talking about how to change registery settings to enable Add-in option. I am not sure what is right.? Q2. If Addin is supported then how do i write my own add-in using .net 3.5 ? What Library/SDK i need.? Regards ...

Managed Code AddIn for Access 2003

Hi, I have created a Managed Code AddIn for Access 2003 using Visual Basic 2008 (VS Professional) and it works fine on my development machine. It was created using the Shared Add-in template. I used the set up project to install... and the .Net Framework was installed. However when I try to deploy to another PC I get the following er...

Outlook 2002 Issues Saving an Embedded Post

I'm writing an Outlook COM addin using C++/ATL. I'm getting a rather odd set of errors and results back from Outlook when I call _PostItem::SaveAs. This only occurs in Outlook 2002 (Outlook XP) and only when the _PostItem is an embedded item (an attachment of some other outlook item). If the Post is an HTML type, it fails with E_INVALI...

Adding a tab to the "Add Reference" dialog in VS?

Been working on a personal add-in for VS 2008 and have been researching automation and control. I see there are lots of examples for adding a .dll reference to the registry so they show in the ".NET" tab in the Add Reference dialog. What I would like to do, however, is add a new tab to the reference dialog with some functionality therei...

Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)

Original post: When Outlook is launched, the Add-In is loaded and adds a toolbar with some buttons. toolBar = OutlookApp.ActiveExplorer().CommandBars.Add(MENU_TAG, MsoBarPosition.msoBarTop, false, true); Everything was working fine, but now one user has his Outlook shortcut set to launch Outlook minimized. And then OutlookApp.ActiveE...

How to store information in a Excel WoorkBook

I'm programing an Excel Addin with VS2008 and VSTO(C#) over Office 2007. This addin needs to store information embeded or inside the Wookbook to recover some status when the user opens again the Wookbook with this kind of information. Before save the Wookbook, the Addin serialize in XML all the information, and after open a WoorkBook th...

C#: Excel 2007 Addin, How to Hook Windows Activate and Deactivate Events

I am writing an Excel 2007 Addin. using VS2008 and .net 3.5, C#. I catched Microsoft.Office.Interop.Excel.Application's WindowActivate and WindowDeActivate events. It was surprised to know that WindowActivate and Deactivate only triggers when i switch between two Excel Windows. if i switch to notepad, i expect Deactivate to be trigger...

Outlook Express Add-in

Hi all , I'm wondering is it any add in/plug in SDK for Outlook Express. As i know, we can use COM addin or VSTO to develop our own plugin for MS Outlook. So how about addin for Outlook Express. Thanks. ...

Excel addin development environment

If I want to build an excel addin with C++. Is there any opensource/freeware alternative to the Visual Studio development environment? Thanks Dean ...

How do I set permissions on my VSTO outlook add-in?

I am trying to distribute my Outlook Add-In to the rest of the company. I'm using Visual Studio 2008 Professional and Outlook 2003. In VS I used an installed template for Outlook 2003. It created a solution with BOTH a project and an installer. I use the project and created an Add-In. It works GREAT on my PC in development. Now, I wan...

How would I go about implementing auto-hide on a custom task pane?

I'm creating an Outlook 2007 add-in using Visual Studio 2008 and C#. I have my custom task pane along with my usercontrol docked to the bottom of the main Outlook window. I'm trying to implement auto-hide on this taskpane so that it minimizes to a certain size when the mouse leaves it. My problem arises in the fact that custom task ...

Visual Studio Add-in to view open files

I frequently have 10 or more files open in Visual Studio at one time. I am looking for an add-in that will duplicate the functionality of the "Windows" Window, but in a NON-Modal, dockable type window. In other words a window with a list of the files open in the IDE, that I can dock next to the Solution explorer or something, and just ...

Sharing Add-in between Office Apps

I have written an Office shared Add-in with C# and .NET 2.0. It uses the same COM Shim for all office apps. Currently, every instance creates its own instance of my class -- they have no knowledge of the fact that the add-in is running on another application. Is it possible to make it so that, say, when the Word add-in launches it can ...