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

Displaying Data in the Outlook Toolbar via VBA

Okay, at my work, our procedures/guidelines require us to send emails letting other employees know if we are leaving our desk for extended periods of time. It's an empty email body (apart from our signature), and the subject says IN, OUT, or…
HrVanker
  • 11
  • 1
1
vote
0 answers

How to check if a menu-created window exists

I have created menu "Run It!". It must create my window. It should be only one in SSMS. All is ok but if window already opened and I click menu I receive an error and window is closed. How I can check if window already exists and do not try to…
ZedZip
  • 5,794
  • 15
  • 66
  • 119
1
vote
0 answers

Does Excel Add-In VSTO 2005SE Need Manifest Files?

We developed application level Excel Add-In in Visual Studio 2005 using VSTO 2005SE. The add-in installs and works fine on Excel 2003, 2007 and 2010 (32-bit) on the most of computers. However, in some cases Excel does not load it, despite the fact…
1
vote
1 answer

How to add my own right click menu?

How to add my right click menus in SSMS 2008R2\2012 Object Explorer? I researched this topic. I do this way: private void Provider_SelectionChanged(object sender, NodesChangedEventArgs args) { INodeInformation[]…
ZedZip
  • 5,794
  • 15
  • 66
  • 119
1
vote
0 answers

Convert string into hyperlink in Outlook

Our bug IDs are of the form ET/s?/d*, and it would be nice to have an addin in Outlook that could find these in the body of an email and wrap it in an appropriate hyperlink. Before embarking on this it would be useful to know whether it's even…
Stephen Connolly
  • 1,639
  • 10
  • 15
1
vote
1 answer

Outlook addin custom button adding in drop down

Hi i am trying to add custom button in drop down in Outlook .... like as shown in image ..black box is added as custom button some help how i can customize ribbon to get this .. thanks nikhil
zytham
  • 613
  • 1
  • 12
  • 27
1
vote
0 answers

VSTO 2010 activate equation editor programmatically

C#/.NET 3.5+ I'm trying to write a PowerPoint 2010 add-in that turns on (/off) the built-in equation editor, as if you had clicked the button on the Insert Ribbon tab, to get around a strangely lacking key binding. The new key binding is in place.…
mkjeldsen
  • 2,053
  • 3
  • 23
  • 28
1
vote
2 answers

Interacting with COM Add-Ins through VBA macros

I'm currently using Microsoft Project 2010 with the Project 2010 Scrum Solution Starter add-in. The add-in is pretty nice, as it adds a lot of custom views/task types/etc. for planning & managing a scrum project. However, it also has some problems…
Lèse majesté
  • 7,923
  • 2
  • 33
  • 44
1
vote
1 answer

Control AppDomainSetup when activating AddInToken within AddInProcess

In .net, one can create an AddIn within a new AppDomain. The creation of new AppDomains is nothing new, and one can use an AppDomainSetup class to specify all the startup parameters (such as where to find the app.config) of the newly created…
Adam
1
vote
1 answer

How to Create VBA Add-In with Shared Codes for All Excels?

I'm writing VBA codes for multiple Excel spreadsheets, which will be shared with others from time to time. At some point I find there are lots of duplications in my works. So I want to find a way to share codes in a sort of Excel add-in, like the…
Alpha
  • 2,372
  • 3
  • 21
  • 23
1
vote
1 answer

VSTO Starting EXCEL in code ADDIN NOT LOADED

I'm launching Excel from code using this code : var excelApp = new MSExcel.Application { Visible = true }; excelApp.Workbooks.Add(); excelApp = null; I've added the second line because without it the Excel automatically closes when the launcher…
Branislav B.
  • 509
  • 7
  • 21
1
vote
2 answers

SSMS add-in warning

I have this add-in for the sql server 2012 following everything the author mentioned but still stuck at this not really an error but not able to figure how to get past this How to remove "Server name" items from history of SQL Server Management…
JackyBoi
  • 2,695
  • 12
  • 42
  • 74
0
votes
2 answers

Code Conversion - MFC C++ to a VSTO Excel Addin in C#

I am converting a MFC C++ COM Addin to a VSTO Excel Addin in C# .NET4.0. There is a lot of code referring to the C API in it. Here is an example. I am possibly going to use Excel DNA to simplify my conversion task. FYI: xlr is a class in the…
Andrew Roberts
  • 990
  • 2
  • 12
  • 26
0
votes
1 answer

open the new template window within c# addin in word 2007/2010

I'm new to VSDO, and i want to open new template/word popup window within word when the button is pressed, I've looked for the appropriate command bar argument but didn't succeeded in finding it. if someone can show me the relevant code for opening…
Roi
  • 1
  • 4
0
votes
1 answer

Creating a SSMS add-in from VS2010

I am trying to create an add-in by using the article below http://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx I know this article is a bit outdated but i managed to get as far as this…
JackyBoi
  • 2,695
  • 12
  • 42
  • 74