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

TreeView with AddIn

I have a TreeView with ItemsSource being nodes from different types. class Node class Folder : Node class Project : Folder All 3 classes are defined in the main project. And the xaml I currently use looks like this:
Aleks
  • 1,177
  • 10
  • 21
0
votes
1 answer

Excel password protected Add-in, found out all public function

Is there a way to found out all the public function in a password protected add-in? Is it possible I can find out through the buttons that the add-in places on the ribbon in excel 2010?
Steven
  • 1,143
  • 4
  • 10
  • 15
0
votes
1 answer

How to switch active window to form view or code view using envDTE?

I am creating a visual studio add-in, i need to switch active document to code view or form view using code. please any one can help?
Masood
  • 15
  • 1
  • 6
0
votes
1 answer

How to add new form using envDTE

I am creating a Visual Studio Add-inn, i need to add new c# windows form using envDTE. any one can help?
Masood
  • 15
  • 1
  • 6
0
votes
4 answers

Uninstall an application programmatically

We have an Excel AddIn say A written in C#, Add-In Express. The installer is built from setup project in VS. Now we want to integrate it to another bigger add-in application say B. we want to be able to uninstall A during installation of B. B is…
toosensitive
  • 2,335
  • 7
  • 46
  • 88
0
votes
0 answers

Custom C# datasource in Excel

We would like to bind Excel 2010 "frontend" to our custom data source and load data via some C# application logic. Is the right way to do that via Excel add-in, or Excel allows developers to plug-in some custom data layer? More precisely, we want to…
Cartesius00
  • 23,584
  • 43
  • 124
  • 195
0
votes
1 answer

Add-in Express RTD refresh issue

Excel AddIn using Add-In express, VS2010, cometd.net talks to cometd server and Tom cat In RTDInitialize event handler, I log in Tom Cat and connect to cometd server, I use an instance of class credential to remember it is loggedOn(set IsLoggedOn to…
toosensitive
  • 2,335
  • 7
  • 46
  • 88
0
votes
2 answers

how to add a new modulo position on a joomla template?

i'm using a joomla template called decayed and it doesn't have the right position, only the left one and nothing more. i would like to add a right and a button positions on that template. how can i do it? cheers
Azer
0
votes
1 answer

Outlook Com Add-In Deployment & Extensibility Issue

I'm a developer writing an add-in for Outlook2003/2007 using C#, Visual Studio 2005. I'm also using the COM add-in wizard (not using VSTO, I have a Connect.cs). The program successfully runs with visual studio installed on my machine but when I try…
Andrew
0
votes
1 answer

InfoPath add-in help - Saving a copy of the active form template, showing custom button in design mode, calling method in form solution

I'm trying to build an InfoPath add-in to allow template editors (as opposed to end users) to preview the form with sample data populated. First, a little background on our environment. We have a custom process that connects to MOSS, downloads the…
Andy Dyer
  • 506
  • 6
  • 20
0
votes
2 answers

Total beginner looking for tutorials programming outlook add ins in c++

I'm an absolute beginner in Outlook programming and Windows GUI programming in general. But I have lots of years experience in C++ programming in general (not GUI) I need to develop a Outlook plug-in and my question is where to start? What do I need…
user63898
  • 29,839
  • 85
  • 272
  • 514
0
votes
1 answer

Outlook 2003 add-in stops loading

I created an Outlook 2003 add-in using C# 2.0 in visual studio 2005. This add-in adds a button to the toolbar when someone is replying to or creating a new email. When the user clicks on the button to send an email, the code records this information…
Royal Hale
0
votes
2 answers

How to add menu item to right click menu in MS Project?

I am developing an add-in for MS Project in Visual Studio and I need a custom menu item in the right click menu. This will modify task data. I am using the following code to add a item: private void AddMenuItem(String param) { …
yoozz
  • 247
  • 2
  • 15
0
votes
2 answers

Excel Add-In sharing memory between Class Libraries

Environment : C#, .NET 3.5 , Windows 7 64, Excel 2007, Visual Studio 2010 I have a VS2010 with 3 projects : Projet « Business » : A class library with a global static variable List Project « Add-In » : Extensibility Shared Add-in…
Jean-Marie
  • 297
  • 3
  • 14
0
votes
1 answer

.Net Add-In Framework using log4net in add-in

I am creating an application that uses add-ins with the .Net Add-Ins Framework. I want to track what goes on inside the add-in using log4net, but I cannot get the logged data to write to the output file. I am using log4net successfully with the…
Payton Byrd
  • 956
  • 1
  • 12
  • 27