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.

learn more… | top users | synonyms (3)

101
votes
5answers
19k views

Choosing between MEF and MAF (System.AddIn)

The Managed Extensibility Framework (MEF) and Managed AddIn Framework (MAF, aka System.AddIn) seem to accomplish very similar tasks. According to this Stack Overflow question, Is MEF a replacement for ...
2
votes
2answers
738 views

I don't want my Excel Add-In to return an array (instead I need a UDF to change other cells)

I've created an Excel Add-In, and one of the functions of this Add-In, lets say New_Years currently takes in 2 years and outputs every New Years day between those 2 years as an array in Excel. So ...
19
votes
8answers
5k views

How to load plugins in .NET?

I'd like to provide some way of creating dynamically lodable plugins in my software. Typicial way to do this is using the LoadLibrary WinAPI fuction to load a dll and calling GetProcAddress to get an ...
11
votes
18answers
1k views

What Visual Studio add-ins do you use?

I have the following installed: Imports Sorter (for VS 2005) GhostDoc Regex Find and Replace (.Net regex compatible find and replace, because VS has its own regex syntax) rockscroll Smart Paster ...
2
votes
1answer
694 views

Outlook 2010 Com addin - NewExplorer never fires

For some reason in my app my FolderSwitch works on the main Explorer that opens with the application but the NewExplorer event never fires, so obviously the FolderSwitch event won't fire on a new ...
21
votes
3answers
8k views

Attaching to a child process automatically in Visual Studio during Debugging

When writing plugins for media center your plugin is hosted in ehexthost.exe this exe gets launched from ehshell.exe and you have no way of launching it directly, instead you pass a special param to ...
31
votes
10answers
6k views

Visual Studio 08 Spell Check Addin?

If possible one that supports at least spell checking: C# string literals HTML content Comments
96
votes
10answers
27k views

Disable, but not uninstall Resharper 4.x onwards

Any ideas on how to disable, but not uninstall Resharper 4.x or above?
5
votes
3answers
4k views

How do I write an IE 8 Add-On in pure managed C#

I would like to write an add-on for IE 8, but I want to use pure managed C#. Is this possible yet? I know for the longest time we were talking only C++.
4
votes
4answers
2k views

Visual Studio window Manager

I was wondering if anyone knows of a window manager for visual studio 2008 like this one. I really liked it, thats all i used in vs2005, and saw somewhere it supposed to work in vs2008 but it doesnt. ...
9
votes
4answers
19k views

Creating add-in for Excel using C#

I want to use C# class methods in Excel. Can anybody guid me how to do it ? The C# component will be excel add-in. How to create setup for this addin, so that I just need to give setup to user which ...
3
votes
1answer
2k views

calling C# from c++ com add-in

I have a COM add-in written in C++ (not C++ / CLI). I want to call a C# library objects/methods from this C++ com library. I guess the CCW comes into picture here, which i am currently reading about. ...
2
votes
1answer
3k views

How can an Excel Add-In respond to events in any worksheet?

Our workbooks are server-generated SpreadsheetML, which cannot include any VBA code. Creating native Excel files or Excel 2007 XML files is also not an option, unfortunately. So, I have an Excel ...
2
votes
2answers
919 views

Get the excel cell address from a UDF

I have created an Automation Add-in for Excel,implemented as a c# class library, which contains a UDF wrapper.(I do not use VSTO) The UDF looks like this: string foo(string data){ //Do some work ...
2
votes
3answers
2k views

How do you call “Document Format” programmatically from C#?

I'm writing a simple VS add-in and would like to programmatically invoke the "Document Format" option (under Edit) within code. Google isn't being very friendly to me today....
1
vote
1answer
1k views

VSTO Add-ins, COMAddIns and RequestComAddInAutomationService

Please see 1st Edit (the screenshot at the bottom): I've followed this article to have a Winform app trigger a VSTO Add-In method: ...
31
votes
6answers
6k views
3
votes
2answers
5k views

Get a list of Solution/Project Files for VS Add-in or DXCore Plugin

I am trying to write a add-in for Visual Studio that, among other things, needs to keep track of every file in a Visual Studio solution. I know what events I need to subscribe to (when a Solution is ...
10
votes
3answers
2k views

MEF vs Mono.AddIn

I'm developing a .NET 3.5 C# desktop application. It should be extensible via plug-ins. Are there any articles etc. discussing the differences between MEF and Mono.AddIn to help me make an informed ...
13
votes
5answers
15k views

What can cause Outlook to change a COM-addin's LoadBehavior to 2 - other than unhandled exceptions?

For some weeks now we have been fighting with an issue where at a small number of customers our Outlook addin gets unloaded and disabled for yet undetermined reasons. By "disabled" I mean that Outlook ...
9
votes
4answers
21k views

How to -> Visual Studio Add In Manager

How do I use the Add-In Manager in Visual Studio? Here is the problem and solution. I want to add this SmartPaster addin and need to get these 3 files listed in the Add-In Manager dialog? ...
5
votes
3answers
2k views

Get the reference of the DTE2 object in Visual C# 2010

I want to get a reference to the current solution, using the DTE2 object with C# in Visual Studio 2010. I first tried the following code: var dte = Marshal.GetActiveObject("VisualStudio.DTE.10.0") ...
10
votes
2answers
941 views

search for a value in an object at runtime [QuickWatch enhancement]

sometimes I waste my time searching for a value in an object at runtime. Certainly you-all know this task --> open the QuickWatch view and browse through the properties until you find what you're ...
6
votes
1answer
917 views

Vertical lines for things like “if statements” in Visual Studio 2008?

Is there an add-on or setting that can add vertical lines that link things like "if statements" in Visual Studio 2008? Thanks
5
votes
2answers
744 views

How to place a control over the task bar in windows using c#

i googled a lot and found out some info about the band object from which we can make the ad-in for the task bar, can i get some more tutorials from scratch & some sample programmes. is there any ...
2
votes
1answer
394 views

Create Registry in both Wow6432Node and normal hive

So I created an MSI for Outlook Addin using Visual Sudio 2010 adding registry key as: and ran it and it puts the registry keys in the Wow6432Node although both Office and Windows is x64. I run ...
4
votes
1answer
241 views

See images in SSMS?

I was browsing around and found this blog post: http://erikej.blogspot.com/2010/04/version-3-of-exportsqlce-now-available.html (It is for a great add in if you user SQL Server CE.) On that post I ...
4
votes
4answers
987 views

VS addin: View markup. Does exist something like that?

While working with ASP.NET using Visual Studio (2008) I have discomfort issue: source code editor context menu has only item 'View Designer' but nothing about to view markup quickly! To see it you ...
3
votes
2answers
290 views

Is it possible to store hidden metadata information that is tied to a specific Table or Cell within a Word document?

I am trying to store metadata (basically a unique id) along with each cell of a table in a Word document. Currently, for the add-in I'm developing, I am querying the database, and building a table ...
3
votes
3answers
3k views

How to call a VSTO AddIn method from a separate C# project?

I have a C# Excel Add-in project "MyExcelAddIn" that has a public method Foo() to do something complex. For testing purposes, the add-in also defines a toolbar button which is wired to Foo() so I can ...
3
votes
5answers
4k views

How can I GZip compress a file from Excel VBA using code in an .xla file only?

I need to be able to GZip compress a file in an Excel VBA function. Specifically I need to be able to use the 'deflate' algorithm. Is there a way to do this without having to exec a command line ...
5
votes
4answers
12k views

Exception from HRESULT: 0x800A03EC Error

I am getting "HRESULT: 0x800A03EC" error when running Excel add-in with following code: Excel.Range rng = ActiveSheet.Cells[x, y] as Excel.Range; string before = rng.Value2; string ...
4
votes
1answer
706 views

How to get the “KeyPress” event from a Word 2010 Addin (developed in C#)?

How can I "catch" the KeyPress event from a Word 2010 Addin developed in C#? Note: I'm not looking for "complex" solutions like hooking stuff, but for the nice and tidy .NET even from the object ...
3
votes
3answers
2k views

C#, Word 2003 addIn and a toolbar button event

I'm trying to write application-level add-in for Word 2003. The plugin adds a button on a new commandbar - clicking the button saves active document and then performs some additional actions. When I ...
0
votes
1answer
284 views

Shared Add-ins for Outlook 2007 Capturing ReplyToAll Event

I am using VS 2010 & Dot Net Framework 2.0. I have created a project in Extensibility->Shared Add-ins for Outlook. I am trying to capture ReplyToAll Event it is not getting fired. Please look the ...
0
votes
1answer
997 views

How to create excel add-in (excel 2003 or previous version) package with activeX dll?

I am new to excel add-in prgramming and I am having a existing excel add-in project need to modify. The plug-in has 2 parts, one is programmed in VB and compiled into a ActiveX DLL file, the other ...
12
votes
2answers
6k views

How do you use WiX to deploy VSTO 3.0 addins?

I want to deploy a VSTO 3 Application Level Word 2007 addin that I've written with Visual Studio 2008. I see that WiX has an extension named WixOfficeExtension that looks like it might have this ...
8
votes
1answer
3k views

Help with excel automation addin

I am a newbie with addin programming and need help with the following scenario. I have an C# excel automation addin that calls a few UDFs. I want to do a user name and password check during when the ...
5
votes
5answers
870 views

Are there add-on libraries or tools available for ASP.NET MVC development?

My first experience with ASP.NET MVC and the Entity Framework has raised my interest in this framework and I would like to implement some basic applications, covering the basic requirements of ...
5
votes
8answers
13k views

What ide is good for developing PyQt apps?

What ide is good for developing PyQt apps?
10
votes
2answers
2k views

Is it possible to refresh WCF service reference from VS2010 addin?

I want to "simulate" the Right click/Update service reference command in a VS2010 addin. I have a reference to the containing (Silverlight...) project, I know the name of the service reference and the ...
8
votes
2answers
5k views

Visual Studio add-on gallery?

i'm hoping to find some add-ons for Visual Studio to address some specific usability issues. Is there a Visual Studio addons gallery that contains a huge dumping ground of addons that every person, ...
4
votes
3answers
570 views

Best practices for implementing an addin/addon/plugin strategy

My application should be extensible. For my own needs I have implement some services. These services are based on the IoC/DI princple. So the services encapsulate the concept of the application. For ...
3
votes
6answers
1k views

problem with trying to create ssms add-in

I'm trying to create an add-in for SSMS 2008 and/or 2008 R2 but I've run into a problem straight away. I can get my add-in to work and on SSMS start-up get it to simply show a message box. However, ...
11
votes
2answers
3k views

Smart Paster Add-In for Visual Studio 2010

Does anyone know of any free add-in similar to Smart Paster, but for Visual Studio 2010? Unfortunately, Smart Paster only works for VS2005 and VS2008. For the ones that don't know what I'm talking ...
4
votes
2answers
865 views

Find an IVsTextView or IWpfTextView for a given ProjectItem, in VS 2010 RC extension

I have the ProjectItem, and want to get the IWPFTextView that is associated with it, if any. I have tried to get an IVsTextManager, and then iterate through the views, but iVsTextManager.EnumViews ...
3
votes
3answers
1k views

How can I activate an Excel add-in from Perl or the command line?

(Please forgive my ignorance on Excel add-ins, and feel free to correct my teminology where appropriate.) I have an Excel add-in that is used regularly. This add-in inserts a toolbar with a number ...
1
vote
2answers
749 views

How can I debug MonoDevelop add-ins with MonoDevelop?

The topic says it all. I cannot find any information on the monodevelop site or through google. Even adding System.Diagnostics.Debugger.Break() and running with mono --debug MonoDevelop.exe doesn't ...
0
votes
5answers
3k views

Process for updating Excel add-in?

I have an Excel 2003 add-in deployed in one of our departments that occasionally needs updated. What currently happens is that I publish the new version from my machine to a central location, this ...
9
votes
5answers
7k views

Can I add a custom “Send” button to Outlook?

I'm creating a secure message alternative to email for my organization. We exchange confidential patient information with outside treatment providers. To protect privacy, we cannot use email for ...

1 2 3