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

Want to Send the Object type data from one VSTO addin Project to Another VSTO addin project

I am working on a Outlook addin in which I want to send the data from one outlook addin project to another outlook project. But when I try call the function of another project with the object type data in the arguments it will throw "Unable to cast…
Ashwani Tandon
  • 129
  • 1
  • 5
0
votes
0 answers

user-defined formula shows error when opening new workbook

My user-defined formula as shown below is working properly in a Function environment as long as this is embedded into a module within the workbook I am primarily using it. However, when I start to put it into an .xlam (AddIn) it is not working…
ezvk
  • 1
  • 3
0
votes
1 answer

Deploy Office Web add-ins in the Microsoft 365 admin center

I am stuck with deploying a Web Office Add-in in M365. I notice that if I’m deploying a web office word add-ins using the M365 admin center (process that is recommended now), the add-in is only available for Word Online and not in Word desktop. The…
0
votes
0 answers

Not possible to import formulas Excel

I have formulas on an SQL server, then I successfully get them from the server to my JS code, but then I try to use my add-in and most of my formulas just won't show in Excel at all. for(var f = 0; f < formHead.length; f++){ rngForm =…
0
votes
1 answer

Error handling for excel addin that cannot find networking drive

I have made an addin and placed it on a shared networking drive. The addin contains a seperat sub that calls the addin whenever an excel document is opened, so the addin will be available in excel all the time. The addin works fine when i am in my…
Lasse
  • 1
  • 1
0
votes
1 answer

EA query to get allocated part

I created an addin for EA and trying to run a query to know for a specific part on which parts is allocated. For example (see picture attached) I want to know for part A on what parts is allocated, should appear B and C. Also I need methods in C#…
Ice
  • 193
  • 1
  • 2
  • 13
0
votes
1 answer

How to Debug a VisualStudio Mac 2022 Extension?

I've build a very simple .net6 library with a visual-studio-mac extension that adds a hello world kind of Pad. How can I run/debug this project in a new instance of VSMac?
0
votes
1 answer

DraftSight Lisp - Blank/Empty Dialog Box Lock

I'm trying to create a Yes/No/Cancel dialog box in DraftSight by using a tutorial's solution (Link to site). However, when I try to add the first message to the dialog box, the program breaks, and the dialog box opens without any code to close the…
G Beck
  • 131
  • 1
  • 14
0
votes
1 answer

'No connection string named 'IICMDATAEntities' could be found in the application config file.' EF6 - Revit Add-in

am build file .dll Revit Add-in has Entity Framework 6 and my errors enter image description here Help me
Blue1412
  • 11
  • 1
0
votes
0 answers

How to load a OneNote add-in published to Azure Storage

I have made a OneNote add-in, as specified here. All local tests were successful. This project is a prototype for the development of a proprietary OneNote add-in for a client. Hence the add-in will not be published to the Office Store. I will not be…
Minasie Shibeshi
  • 390
  • 3
  • 16
0
votes
1 answer

Get Last Column in Visible Views Index - Excel - Office-JS

I'm trying to filter the last column on a worksheet but I can't seem to get the Index of the column. To be clear, I need the index relative to the worksheet, no the range. I used VisibleView to find the Column, but there may be hidden rows, so my…
FreeSoftwareServers
  • 2,271
  • 1
  • 33
  • 57
0
votes
1 answer

Transparent icons for Visual Studio Addin

I'm working with this tutorial: http://msdn.microsoft.com/en-us/library/ms228771.aspx But it says, images MUST be 16x16, bmp. I was wondering, is it possible to use transparent icons, and if how? Also, is it possible that VS2010 (wpf and all) still…
TDaver
  • 7,164
  • 5
  • 47
  • 94
0
votes
2 answers

Where is an Outlook Add-In installed?

Where can I find my installed AddIn. I've created it in Visual Studio 2010 for Outlook 2007. Basically I publish and run the setup and cannot find anything on my computer.
0
votes
0 answers

Office add-in error registration error - Component not correctly registered

We have a Office add-in component that is built in VB 6. We register it by running command as OfficeConnector.exe /regserver with admin rights that works most of the time for any MS office versions. In one of the machine with Office 2013…
Nagaraj
  • 3
  • 1
0
votes
2 answers

Programming Word Add-Ins in C# Documentation?

I cant really seem to find a documentation for word addins in C#. Like to find out how to insert text I played with intellisense for half and hour to find Application.Selection.Range.InsertAfter(); Is there a documentation to this I'm trying to…
Mark Lalor
  • 7,820
  • 18
  • 67
  • 106
1 2 3
99
100