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
0
votes
1 answer

PowerPoint 2003 COM Add-In

I have a PowerPoint Add-in. I created a setup for it and installed it. It works fine on my machine but the problem is when I install it on a fresh machine with a fresh copy of PowerPoint 2003, the add-in installs successfully but there is no COM…
Trum
  • 71
  • 1
  • 9
0
votes
1 answer

Adding Ribbon support to Excel COM Addin

I have a MS Office COM addin written in C# (Visual Studio 2005) and uses a COM Shim dll. The addin DOES NOT use VSTO technology and supports Excel XP and higher. The addin adds a new toolbar and a menu. The addin works fine in Excel 2007 but it is…
A9S6
  • 6,575
  • 10
  • 50
  • 82
0
votes
3 answers

turn on laser pointer in powerpoint with add ins

how can i turn my mouse cursor to laser pointer on powerpoint2010 slideshow with an addins . by default cursor changes by hloding down Ctrl+LeftMouseKey in SlideShow Mode. but i want change that by add in code, i found a property (PointerType) but…
mX64
  • 388
  • 1
  • 7
  • 24
0
votes
1 answer

.NET MEF DirectoryCatalog issue

I am developing Excel add-in and use MEF to provide extensibility. DirectoryCatalog works fine on my local drive, however when I deploy solution to the network drive composition silently fails. In regular .exe application this problem can be…
vlad52
  • 1
  • 1
0
votes
1 answer

XLL Add-in menu won't auto load

I wrote a small XLL Add-in (VS2010 VC++/Excel 2007) containing a menu. It's correctly registered (seen with the Add-In Manager) but the menu doesn't show up when I open my excel workbook (a .xlsb). I have to again load it manually (Excel Options ->…
Nestor
  • 15
  • 1
  • 4
0
votes
1 answer

Visual Studio 2005/2008 Add-In

I am writing a plug for Visual Studio 2005/2008. I want gain access the controls in the following picture:alt text http://img145.imageshack.us/img145/2773/82813838.jpg How do it ?
Michał Ziober
  • 37,175
  • 18
  • 99
  • 146
0
votes
1 answer

Create installer for add-in in Excel 2007

I have created an add-in for Excel 2007 in visual studio. How do I make an installer / get it onto other peoples computers. Thanks in advance.
rustybeanstalk
  • 2,722
  • 9
  • 37
  • 57
0
votes
1 answer

Detect method name: Visual Studio 2008 Add-in

I want to get the name of the function in an add-in if cursor is in between the opening and closing brace of a function in a c# file. Any idea?
Ram
  • 11,404
  • 15
  • 62
  • 93
0
votes
0 answers

Unable to debug office.js add-ins on Windows using Visual Studio Code without admin privilege

I created a Word Add-in using Yeoman generator and try to set up my development environment with VSC on Windows 10. When I start command npm start or npx office-addin-debugging start ./manifest.xml, I got the following message Debugging is being…
zjda
  • 31
  • 2
  • 6
0
votes
1 answer

MS Word addin, macro or VBA script for passing word text to remote server, and displaying the response

I would like to create a button that the user can press on the MS word toolbar, after this the document text is passed to a remote service, and some tabular data is passed back and displayed to the user. Which would be the easiest an quickest for…
giorgio79
  • 3,787
  • 9
  • 53
  • 85
0
votes
0 answers

Excel COM add-in not loading in

I have an excel com add-in. When I start excel drop this error message, and not load in the add-in: The common language runtime could not be loaded by file:///C:\Program Files (x86)\Obnex Technologies\SQL Spreads Desktop\SQL Spreads.vsto|vstolocal.…
0
votes
0 answers

out of office flashing for one client

I have had a VSTO add-in that has been out in the wild for some time. We have one client that reports that when he enters an email of someone that is out-of-office as a one of the recipients in a new email, that in the body of the email the…
Tom Lee
  • 11
  • 1
  • 3
0
votes
1 answer

Can we side load an outlook add-in by clicking button of another outlook add-In? I mean can we load an add-In using another add-In?

const loadSecondaryAddin = () => { window.location.href = "lINK"; }; return ( <> This didn't worked. The Linked add-in's…
0
votes
0 answers

Outlook VSTO add-in with form will not create the mail-item

I have created an Outlook Add-in (VSTO) that opens a form in which I have multiple controls that give output to use in the E-mail. However when trying to build the solution I get an exception thrown, saying all outlook dialogs should be closed. I…
Skoman
  • 1
  • 1
0
votes
0 answers

EA addin - not visible on citrix

I created an addin in C#. I installed/register this addin (MyAddin.dll) on the server and is visible and working, but when i tried on citrix the addin is not visible, do you know why? Multiple users log-in on citrix. On the server I used…
Ice
  • 193
  • 1
  • 2
  • 13