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
6
votes
2 answers

Enhanced Object Inspector Expert plug-in for delphi IDE

I remember some guy made his one IDE expert, replacing stock object inspector adding filtering and such But i frankly forgot its name It was so generic that googling i only can get for runtime clones of OI, not that IDE add-in.
Arioch 'The
  • 15,799
  • 35
  • 62
6
votes
5 answers

Developing MS Word add-in

Anyone knows of a good tool for developing add-ins for Word in .net? Hopefully something that supports both office 2003 and 2007. Thanks.
Meidan Alon
  • 3,074
  • 7
  • 45
  • 63
6
votes
1 answer

How to create a Visual Studio add-in to generate files?

I would like to create a Visual Studio add-in to generate files. For example, I would like to create something similar to the "Add Controller" dialog in ASP.NET MVC. This appears when you right-click on the "Controller" folder in an MVC project in…
Andrew
  • 11,068
  • 17
  • 52
  • 62
5
votes
2 answers

How can I debug MonoDevelop add-ins with MonoDevelop?

The topic says it all. I cannot find any information on the monodevelop site or through google. Even adding System.Diagnostics.Debugger.Break() and running with mono --debug MonoDevelop.exe doesn't seem to do anything..
simendsjo
  • 4,739
  • 2
  • 25
  • 53
5
votes
1 answer

Outlook 2010 Com addin - NewExplorer never fires

For some reason in my app my FolderSwitch works on the main Explorer that opens with the application but the NewExplorer event never fires, so obviously the FolderSwitch event won't fire on a new Explorer. I can't work out why the event doesn't…
Matt
  • 1,436
  • 12
  • 24
5
votes
1 answer

Possible to Create 64-bit Add-in for VBA IDE using IDTExtensibility2?

Is it possible to create a COM add-in that will load into the Visual Basic Editor of Office 2010 64-bit? I can get my add-in to load into Office 2010 32-bit, but it just gets ignored by the 64 bit version. EDIT: In my research, I am finding that a…
Chris Spicer
  • 2,144
  • 1
  • 13
  • 22
5
votes
3 answers

How can I activate an Excel add-in from the command line in Windows 7?

Currently I'm writting VB functions and save them as an Excel addin .xlam file. I want to have a .bat script so as to quickly deploy those addins. Currently, to activate my .xlam addins, I have to Open Excel - File - Option - Addins - Browse to…
Nam G VU
  • 33,193
  • 69
  • 233
  • 372
5
votes
1 answer

Where can I get add-ins for visual studio express?

There is countless add-ins on http://visualstudiogallery.msdn.microsoft.com/ but it seems they are all not for visual studio express (I use visual studio 2010 C# express in my laptop). But extension manager does provide links to the site so I…
onemach
  • 4,265
  • 6
  • 34
  • 52
5
votes
3 answers

Is there an add-in for VS2008 to manage favourite solutions/projects?

The "Recent Projects" section on the startup page in VS2008 feels pretty useless to me. I'm used to checking out multiple repositories to work on different features. Our repository structure is pretty deep. The File->"Recent Projects" menu does not…
Christo
  • 1,802
  • 4
  • 20
  • 31
5
votes
1 answer

Office Add-in project, dll and app.config file problems

I have a library project that I created and have used in about three projects so far. A WPF project, a Windows Forms project and a web app project. The dll uses an App.Config file for various keys common to the office such as the path to the…
Bugget
  • 115
  • 1
  • 9
5
votes
2 answers

Visual Studio Add-On and extensions performance monitoring?

I'm using / testing a lot of extensions or add-on to Visual Studio. As my Visual Studio is quite low, I'm wondering if some extensions are causing high CPU load. Is there any way to monitor memory, disk and CPU usage per extension ? Google Chrome…
Steve B
  • 36,818
  • 21
  • 101
  • 174
5
votes
2 answers

What is "Miscellaneous Files" inside DTE VS2010 Solution?

Following up on my previous question: VS2010 DTE Addin: project inside solution folder is not "Project" I successfully found all my projects in the solution. However, the code also founds an extra item named "Miscellaneous Files". It's Kind is…
TDaver
  • 7,164
  • 5
  • 47
  • 94
5
votes
1 answer

Assembly cannot find referenced assembly when compiled to memory with CodeDomProvider

i am trying to compile some code to memory at runtime using a CodeDomProvider. The code I am compiling have a reference to an external assembly which I include in the parameters used when compiling the code. When I compile to memory and try to use…
MartinF
  • 5,929
  • 5
  • 40
  • 29
5
votes
1 answer

popup dialog box in word addin

I am creating a ms office word addin using c#. I have a ribbon with several button. On clicking one of the button I need a popup with few textboxes. Question: How to create a popup dialog in word addin?
maX
  • 788
  • 2
  • 11
  • 32
5
votes
2 answers

How to remove a Word.Selection?

In the context of an Outlook add-on using the WordEditor from the Outlook.Inspector I would like to remove the selection after replacing it with a custom text. For example, if I select something I can change the selection to a custom text as…
Baadal Gupta
  • 145
  • 1
  • 1
  • 7