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

How can i delete the Bookmark in word using js api or is this the way to delete the bookmark as i tried?

the error is showed in image please check Here is the code for deleting the bookmark from word addin using js api Word.run(async (context) => { console.log("result", result); const range :any =…
0
votes
0 answers

Outlook add-in event-based with OfficeRuntime.auth

I'm new to this topic, but I've taken some time to understand some things. I would like to know how I get a token from an event, I read that OfficeRuntime.auth.getAccessToken() can be used but it doesn't work for me. Thanks for your help. I hope get…
0
votes
0 answers

Word VBA AddIn pops up again after deletion

This is my first question I ask in this community, maybe you know the answer. I want a Word macro application “MyToolbox.docm” providing some functionality for the users using a dialog box. The following requirements apply: • The Toolbox…
Markus
  • 1
0
votes
0 answers

Getting Excel Main window in System.Windows.Window in C#

I have Excel AddIn and I need to pass Excel Main Window to a certain function as a parent. So, at ThisAddin_Startup I try public static Excel.Window ExcelActiveWindow { get; set; } private void ThisAddIn_Startup(object sender, System.EventArgs e) { …
Leon
  • 165
  • 12
0
votes
0 answers

Revit 2018 Addin - After initializing a singleton at startup, assigning the instance to a variable in a command keeps the variable as null

Developing a multi-version Revit addin. My code is running fine on Revit 2019 and above, but is having an issue in Revit 2018. I am initializing a singleton class (HostApplication) at startup to gather common properties that can be used in all…
Samer
  • 11
  • 1
  • 6
0
votes
1 answer

update Worksheet From Base64 file Excel Javascript API

I have a problem, I'm trying to update a worksheet inside excel in Add-in Javascript API with encoded content in Base64 but I don't want to create a new worksheet like the function insertWorksheetsFromBase64() does , but just insert the data in my…
T1masv
  • 1
  • 1
0
votes
1 answer

How to Access WPF controls using ElementHost?

I'm building an Add-in for Excel. I wanted to use WPF controls, so I followed this tutorial https://learn.microsoft.com/en-us/visualstudio/vsto/using-wpf-controls-in-office-solutions?view=vs-2022 I added some tab controls to get my feet wet, I…
Edgar O.
  • 37
  • 1
  • 5
0
votes
1 answer

Addin dockable in Enterprise Architect

I'm developing an Add-in in C# for Enterprise Architect, when user selects a menu item then a WPF GUI will pop-up. How can I make this WPF GUI to dock (using docking) on Enterprise Architect GUI? Can I make the add-in GUI dockable?
Ice
  • 193
  • 1
  • 2
  • 13
0
votes
0 answers

Excel VSTO Add-In : User range selection like chart data source

My Excel VSTO AddIn should paste data (strings) to a region of cells. Before this happens, I want to let the user select the range (fixed size) where the data should be pasted. I'd like to visualize this in a similar way, users can manipulate the…
0
votes
0 answers

Using data from external files inside an excel add-in

I'm trying to build a simple addin for excel which does a specific xlookup when called. As a formula it looks like this =XLOOKUP(C2,'[MasterAssetTypeTaxonomy.xlsx]Master Taxonomy'!$A:$A,'[MasterAssetTypeTaxonomy.xlsx]Master…
0
votes
0 answers

How can I add keyboard shortcut / capture keystroke in PowerPoint in the new web based add-in office.js

How can I add keyboard shortcut to PowerPoint in the new web based add-in office.js, or if I can capture all keystroke send to PowerPoint so I can create my shortcut management script.
0
votes
1 answer

How to find out if two shape objects in PowerPoint intersect with each other?

There are multiple shapes present in a PowerPoint slide. See image below As can be seen in the image, we have 3 shapes - rectangle, triangle and circle. I would like to iterate over the shapes in the slide and create a list of shapes for each shape…
0
votes
1 answer

When I save edmx, all templates are transformed automatically. How to stop this behavior in visual studio 2010?

This takes relatively long time to save edmx. Any help will be appreciated. Btw, I do not know if this is behavior added to studio by some add-in!
isntn
  • 1,208
  • 10
  • 22
0
votes
2 answers

C# and Excel automation Add-in problems

I'm kind of new to c# and trying to create an automation add-in for excel and I followed the instructions given in this article This is working fine when I use numbers as parameters to the function called from a cell =MultiplyNTimes(3,7,8) but…
Nacho
  • 87
  • 7
0
votes
1 answer

Add Checkbox/DropDownList in WORD using Addin JS API

I'm new to WORD ADDIN and I want to add Checkbox/DropDownList in MS WORD using Word Addin and I tried to add using Word.ContentControlType but its not helping. Can anybody tell me or provide any reference regarding it? I'm sharing my code along with…