Questions tagged [add-in]

AddIn (Add-In or Add In) is a synonym for plugin - a program that is triggered by a host program allowing third party developers to manipulate or extend the hosting program.

Add-In (AddIn or Add In) is a synonym for - a program that is triggered by a host program allowing third party developers to manipulate or extend the hosting program.

Typically, whether these programs are called "addins" or "plugins" depends on the programming language and platform. For example, in they are called plugins whereas in they are called addins. Some programs also call them "addons". In any case, these programs add or extend functionality to an existing program.

In most cases the hosting program will expose an extensibility interface to the hosted code, allowing it to execute tasks.

The most used types of Add-Ins are those automating the Microsoft Office programs (Word, Excel, Powerpoint, Outlook), browsers (Internet Explorer), IDEs - Visual Studio. But other non-Microsoft programs provide COM Extensibility as well (Skype, Altova software products, Photoshop, AutoCAD and many others).

In most cases the Add-Ins use COM object interfaces (that allow the Add-In code, if started from a standalone executable to instantiate the host program and then manipulate it) exposed by the hosting software.

Links:

2555 questions
9
votes
2 answers

Is it possible to refresh WCF service reference from VS2010 addin?

I want to "simulate" the Right click/Update service reference command in a VS2010 addin. I have a reference to the containing (Silverlight...) project, I know the name of the service reference and the url of the service. I've found this:…
TDaver
  • 7,164
  • 5
  • 47
  • 94
9
votes
2 answers

DI (Autofac) in a plugin architecture: Is one separate DI container per plug-in OK?

I am trying to introduce DI (with Autofac) into an existing Windows Forms application. This application has a basic plug-in architecture where each plugin displays its own form. On startup, the application scans registered assemblies for types that…
stakx - no longer contributing
  • 83,039
  • 20
  • 168
  • 268
9
votes
1 answer

XML Comment Viewer Add-in for Visual Studion 2010?

Wondering if anyone knows if the feature to allow add-in's for Visual Studio 2010 xml comment viewer was cut in the final release?? What I am talking about specifically is this: I took this image from this page on MSDN…
Jeff Lundstrom
  • 1,043
  • 1
  • 8
  • 22
9
votes
2 answers

Incorrect async/await working, Excel events in Excel Application Level Add-in

I faced a problem with using async /await in my add-in application, I have custom task pane and user can download some data with it, so there are problems: After awaited operation completed the control is not returned to previous execution context.…
Max Sinev
  • 5,884
  • 2
  • 25
  • 35
9
votes
2 answers

See images in SSMS?

I was browsing around and found this blog post: http://erikej.blogspot.com/2010/04/version-3-of-exportsqlce-now-available.html (It is for a great add in if you user SQL Server CE.) On that post I saw an screen shot of SSMS with images in the…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
9
votes
4 answers

The macro cannot be found or has been disabled because of your Macro security settings

I am getting the error that appears in the title and I already check the security settings, I have everything enabled and the Add-in is signed. I put the screenshot of how I have the options. If I have everything enable why it can give security…
Iban Arriola
  • 2,526
  • 9
  • 41
  • 88
9
votes
3 answers

Create outlook addin without need for admin rights

I wrote an outlook addin with some basic functionality to access a webservice and execute methods on it. Everything works like a charm, except that I can't seem to get rid of the fact that users need admin rights to install this add-in. Google…
bas
  • 13,550
  • 20
  • 69
  • 146
9
votes
1 answer

Get the IDs of all the controls of Office 2010 ribbon and interact with ribbon shortcut from custom Add-ins

I want to get all the controls list in the powerpoint 2010 ribbon like the one in the powerpoint option -> customize ribbon-> all commands. Furthermore, I want to interact with ribbon shortcut from custom Add-ins
Rokr_13
  • 95
  • 1
  • 1
  • 6
8
votes
1 answer

Creating an addin for Outlook using javascript

I've seen the jello-dashboard for Outlook which adds Getting Things Done (GTD) functionality to Outlook. I'm taken by the fact that it only uses javascript to do this (using extjs). Previously I thought that any add-in dev for MS products were…
carbontracking
  • 1,029
  • 4
  • 17
  • 33
8
votes
1 answer

Office add-in ribbons: same tab with 2 addins

I'm trying to make two word add-ins' groups to appear in the same tab (Tools) but they both create unique tabs (there's two 'Tools' tabs). I saw this video but I'm using the Visual Designer, not XML. Can I edit the designer code in some way to…
Mark Lalor
  • 7,820
  • 18
  • 67
  • 106
8
votes
1 answer

Inserting image content from Rest API to currently opened document in Microsoft Word

Edit: This question's text has been changed to reflect utilizing open xml code and interop. I'm trying to insert a base 64 encoded image to a Word document via a ribbon. The following code is for reproduction purposes: public partial class…
C Bauer
  • 5,003
  • 4
  • 33
  • 62
8
votes
5 answers

VisualStudio 2010 - PowerShell Add-In?

Is there any PowerShell Add-Inn for VisualStudio 2010? I only found the VS Command Shell Add-In for VS 2005 and 2008 (Add-In from 2007)
LaPhi
  • 5,675
  • 21
  • 56
  • 78
8
votes
4 answers

Excel COM add is not loading during startup and have to add it manually

Excel COM addin is not loading during starting up and each time I have to add it manually. After checking the File > OPtions > Add-ins > Manage -> COM addins, I see that the 'add in' is in 'Unloaded' state. Not sure how to make it automatically load…
user2373210
  • 461
  • 2
  • 5
  • 16
8
votes
1 answer

Updating ClickOnce VSTO AddIn from within the Office itself does not update the AddIn

I have a button on a ribbon to check for AddIn (itself) updates Here's the code private void button1_Click(object sender, RibbonControlEventArgs e) { UpdateCheckInfo info = null; if (ApplicationDeployment.IsNetworkDeployed) { …
Mike
  • 842
  • 1
  • 9
  • 31
8
votes
1 answer

Creating PowerPoint Add-Ins from VBA defined Macros

So I've created a Macro in a PowerPoint Presentation and I would like to make this Macro readily available to someone else. From what I have gathered, the best way to do this is to create an Add-in. I have come across several articles stating to do…