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

Develop office 2007 addins under .Net V2.0 and VS2008

this is a serious problem I need to handle with I need to develop office 2003 and 2007 addins, both with .Net framework v2.0 Our company uses VS2008, which only allows developing 2007 addins under .Net v3.5 Does anyone knows of a way for creating…
Nissim
  • 6,395
  • 5
  • 49
  • 74
1
vote
2 answers

Visual Studio - Possible to create support for other languages?

Is it possible through their add-ins to add support to other languages that c# or vb.net? I mean, like have full control of the IDE, debugging included.
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
1
vote
3 answers

Sharing Add-in between Office Apps

I have written an Office shared Add-in with C# and .NET 2.0. It uses the same COM Shim for all office apps. Currently, every instance creates its own instance of my class -- they have no knowledge of the fact that the add-in is running on another…
emrosenf
  • 87
  • 5
1
vote
1 answer

How To Capture Keypress Event inside Compose Email body(Mail Item) in Outlook?

I need to capture the keypress event when a user types the contents inside the mail body. When the user presses the spacebar the previous word has to be read from the compose mail body. How can this keypress event be captured within the compose mail…
1
vote
2 answers

How do you create a ClickOnce MS Office Outlook add-in?

The Outlook add-ins I have created using Visual Studio 2005 don't use the ClickOnce installer, just the regular Windows Installer. (File -> New Project -> Extensibility -> Shared Add-In) I need to create the add-ins using the ClickOnce installer…
John Smith
  • 4,416
  • 7
  • 41
  • 56
1
vote
1 answer

Adding content control throws an exception dynamically

I am fairly new to Word Addin development. Fortunately I was able to do almost everything but stuck at some simple issue I belive. I want to insert plain text controls dynamically at the selected range. For this I am using the following: …
WPFKK
  • 1,419
  • 3
  • 20
  • 42
1
vote
1 answer

How to get selected text from Word Document in C# based Word Add-In?

I am developing a MS Word Add-In. For which, I would like to know how to get the text that is currently selected in the word document and then perform my application specific action on it. Thank you, for your help.
Hiren Kotadia
  • 11
  • 1
  • 2
1
vote
2 answers

C# Outlook AddIn: How to determine to which calendar an AppointmentItem belongs?

I want to determine to which calendar an AppointmentItem belongs. The scenario is as follows: An exchange administrator can have privileges to create appointments for conference rooms (by simply creating an appointment in the conference rooms…
AlexLiesenfeld
  • 2,872
  • 7
  • 36
  • 57
1
vote
1 answer

How to programmatically open an Outlook Shortcut

I'm wondering if there is a way of programmatically opening an Outlook Shortcut from my addin. I've created the shortcut as follows Sub AddShortcut() Dim myOlBar As Outlook.OutlookBarPane Dim myolGroup As Outlook.OutlookBarGroup Dim…
user48408
  • 3,234
  • 11
  • 39
  • 59
1
vote
1 answer

Excel Addin Button

I am new to Excel addin programming. I created an Excel addin for Excel 2010 in C# which will create button in every sheet of workbook. Can some one tell me what is wrong with this code: Excel.Worksheet activeWorksheet =…
Abhinav
  • 55
  • 1
  • 7
1
vote
1 answer

Visual Studio 2008 add-in cannot load external text file

I'm currently working on a simple add-in that is supposed to insert a copyright statement to a source file. It works fine but i would like the copyright text to live in a text file. This text file is being deployed to the same folder as the dll and…
danca
  • 509
  • 4
  • 11
1
vote
2 answers

How can I add an existing button/group from a ribbon tab to a new custom tab?

I am developing an VSTO Addin and I want to create a new tab with buttons from other tabs. I already created the new tab, but I can't succeed adding the existing buttons and groups.
yoozz
  • 247
  • 2
  • 15
1
vote
1 answer

Outlook ItemChange Handler (makes item unchangeable)

i write a Outlook Addin which should change an Contactitem after write. i use ItemChange EventHandler folder.ItemChange += new Outlook.ItemsEvents_ItemChangeEventHandler(ContactItemChange); but when i am editing an item, my Code always run in…
Konobi
  • 401
  • 1
  • 6
  • 14
1
vote
0 answers

How to add an entry to File Menu bar in Internet Explorer

Is there a way to customize File Menu in internet explorer. I am making an add-in in which i want to add something next to File->Send or say File->Print. by documentations, i saw that only Help Menu and Toolbars can be customized in IE. However i…
hjindal
  • 588
  • 7
  • 16
1
vote
1 answer

How to get current user's Pager number as part of MS Outlook Add-In using C#?

Currently I am developing an Add-In for MS Outlook 2010 using C# in VS2010. This will create an extra Menu in the ContextMenu when ever we click on the email id. On click of that menu it will display the corresponding user's pager no. I've followed…
Santosh Panda
  • 7,235
  • 8
  • 43
  • 56