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

Practicality of Add-In Pipeline in C#

How practical is using the MEF pipeline in your application for a add-in/plug-in environment? If, for example I want to create a basic reporting base class, then extend the functionality using some kind of add-in setup (like the MEF pipeline), how…
Ourx
  • 109
  • 3
  • 15
0
votes
1 answer

Custom Pipeline Directories in C#

I have created a pipeline for addins using C#. Once compiled all the .dll files used in the pipeline are specified in separate folders i.e. \addinsideadapters\AddInSideAdapters.dll; \addinviews\AddInView.dll etc. Is there a way to compile and run…
Ourx
  • 109
  • 3
  • 15
0
votes
1 answer

C# Excel Addin - Get the active excel workbook

I am writing an excel Add which will fetch data from database. I am able to add the custom menu to excel in OnConnection Extensibility.IDTExtensibility2, but after that the Excel Object is destroyed and I am not able to access the Active…
user1131450
  • 21
  • 1
  • 4
0
votes
2 answers

Read the calculated values from Excel using AddIn Formulas and Microsoft Object Library

we are trying to retrieve a calculated value from a cell which has add-In formulas in it. The sample add-in "myUtilityl.xla" is working properly in excel. It retrieves value for the addin function =ISOWEEKNUM(F9). But we are unable to retrieve the…
jinto johnson
  • 21
  • 1
  • 7
0
votes
1 answer

Unable to Debug my Add-in solultion

I am working with Add-ins for the past 10 months. I have not faced problem like this before. When I try to debug my Addin Solution in Visual Studio 2008, I get the following error. Could anyone please help? A project with Output Type of Class…
0
votes
1 answer

Find out if cursor is inside a method, class or namespace block

I would like to create a Visual Studio addin which can identify if the caret currently is inside a method, class or namespace block, i.e. if the caret moves, the addin should be able to note down the status that the caret is currently inside…
Faredoon
  • 339
  • 1
  • 9
  • 18
0
votes
2 answers

Accessing selected range address and cell values in Excel add in

I'm endeavoring to write an Excel 2010 application add-in using .NET 4 and VS 2010. What's proving difficult is accessing the range of cells selected by the user. The user will select a series of n consecutive cells and then click a button on the…
hughesdan
  • 3,019
  • 12
  • 57
  • 80
0
votes
3 answers

Flexible reporting system with dynamically loaded assemblies

I want to build a flexible reporting system for my application. So far I only have a concept in my head and need some tips on implementation. I'm using Crystal Reports to render reports and I know how to load reports dynamically. Now, the idea is…
Pavel Bastov
  • 6,911
  • 7
  • 39
  • 48
0
votes
1 answer

Creating SQL Server 2008 Add-Ons: current equivalent of sqlwb.exe

I'm trying to create a simple Add-On for SQL Server 2008; it is simply going to pass a parameter from SQL 2008 to a console application. Although Add-Ons are not specifically supported, according to these articles (1, 2), it is possible in 2005 and…
CJM
  • 11,908
  • 20
  • 77
  • 115
0
votes
1 answer

Word 2007 add-in selected text help needed

i am trying to create word 2007 add-in using VS2008, and i need to know how to get the selected text inside the word document
0
votes
1 answer

How to programmatically navigate the Schema View in Visual Studio 2008?

I'm planning to develop an Add-in for Visual Studio 2008 that will allow me to programmatically create basic procedures for tables in a Database Project. However I'm stuck in the very early stage because I can't find a way to programmatically…
Paulo Santos
  • 11,285
  • 4
  • 39
  • 65
0
votes
1 answer

Visual Studio 2008 Addin disapears after first click

I'm developing simple VS 2008 addin. Now I have only autogenerated code of base autogenerated files. This is "TestsGenerator - For Testing.AddIn" file:
rodnower
  • 1,365
  • 3
  • 22
  • 30
0
votes
1 answer

Set MS Word 2010 Document Name from COM Addin

I'm searching for a way to preset the proposed filename in the SaveAs dialog of Ms Word 2010 from an COM AddIn. (Additionally I'd like to set also the default store path, but that is just secondary.) I'm using the default SaveAs commandButton of the…
0
votes
2 answers

Outlook 2007 add-in - Problem using BeforeItemMove event

I am writing an Outlook 2007 addin. All I am doing is: private void ThisAddIn_Startup(object sender, System.EventArgs e) { Outlook.Folder root; //creates Spam folder if it dosen't exist if (!SpamFolderExist()) …
Jeni
  • 587
  • 1
  • 5
  • 12
0
votes
1 answer

Excel add-in OnConnection getting called before the workbook is loaded

Does anyone know why, when I load a workbook (double clicking on an .xls file that is already created) my OnConnection gets called on my Add-in before the workbook gets loaded. This causes my…
Tizz
  • 820
  • 1
  • 15
  • 31