Click here to Skip to main content
15,893,594 members
Everything / AddIn

AddIn

AddIn

Great Reads

by Shemeer NS
Error Number 8013150a, 80131515, 80131522, 80070002, 80004002, 80004005, 80070057, 80131500, 80131018
by Shemeer NS
Color Picker tool for Visual Studio IDE, VSPackage walkthrough
by veen_rp
Why can't you set transparency to a picture in an MSOffice application? Well, you can use a clumsy work-around to create a shape and paste your picture from the clipboard. Here's the code to automate it from VBA.
by Leo Chapiro
Outlook AddOn to store the attachments in the file system

Latest Articles

by Leo Chapiro
Outlook AddOn to store the attachments in the file system
by puneetshrma
Simple AddIn for Excel to generate GeoCodes for structured or Unstructured Addresses
by Tomáš Bauer
Capture of a Typical SQL Server Database Workload
by Vladan.Obradovic
Display additional properties for each VM inside SCVMM 2012 R2 console (VLAn, IP addres, VM Path, Mounted ISO, Number of Checkpoint)

All Articles

Sort by Score

AddIn 

23 Sep 2012 by Shemeer NS
Error Number 8013150a, 80131515, 80131522, 80070002, 80004002, 80004005, 80070057, 80131500, 80131018
2 Jul 2014 by Shemeer NS
Color Picker tool for Visual Studio IDE, VSPackage walkthrough
8 Nov 2015 by veen_rp
Why can't you set transparency to a picture in an MSOffice application? Well, you can use a clumsy work-around to create a shape and paste your picture from the clipboard. Here's the code to automate it from VBA.
7 Oct 2020 by Leo Chapiro
Outlook AddOn to store the attachments in the file system
16 Mar 2012 by Sachin Chandanshive
Read / Write data from CSV to Excel
13 Aug 2012 by Sachin Chandanshive
Addin Containg Useful Macros & Easily Accessible From Ribbon Menu
2 Feb 2015 by Sergey Alexandrovich Kryukov
No automatic processing can replace human culture.Think of this: if you add comments to existing code, the situation is simple: if this is done automatically, this comment is trivial and hence useless. I actually can see only one exclusion: I find it convenient if all end-of-block places...
26 Jan 2016 by NightWizzard
You can access the properties of each mail item via the propertyaccessor like this:Const PR_TRANSPORT_MESSAGE_HEADERS = "http://schemas.microsoft.com/mapi/proptag/0x007D001E"Outlook.PropertyAccessor olPA = olkMsg.PropertyAccessor;String Header =...
5 May 2016 by AnvilRanger
Plain and simple, there is not 100% reliable way to automatically track emails. It is possible you could get a non delivery receipt that an email does not exist, but that is dependent on server configurationYou could also try delivery and read receipts, but again modern email clients do not...
4 Feb 2011 by GenJerDan
You mean like this: Adding a Status Bar Pane to an Internet Explorer Window and Unmasking the Web Page Passwords in Place[^] The first part, anyway... ;P
29 Jun 2011 by OriginalGriff
You cannot put an icon inside a TextBox: the clue is in the name. TextBox.It only holds Text.You can do it if you use a RichTextBox, or if you derive a user control from a TextBox. The former would probably allow the user to delete the icon, the latter would put it under your control.
20 Mar 2012 by Karthickeyan.k
Hi Find the steps below:In Outlook AddIn 2007 you have to add a Setup Project by your self.1) Add a setup project to the solution.2) Set the primary output to the Add In project.3) Add the following files to the Setup Project:[Add In project name].vsto,[Add In project...
3 May 2012 by igorvelho
VS2010 AddIn that allows to create a solution adding multiple projects at same time
2 Jun 2012 by Sergey Alexandrovich Kryukov
The concept of partial class has nothing to do with run time. The question makes no sense.To understand what partial declaration does, read carefully: http://msdn.microsoft.com/en-us/library/wa80x488.aspx[^].It looks like you do not really understand what a project build does, how the...
27 Sep 2012 by Tejas Vaishnav
I have develop one addin and its working fine for outlook 2007/2010 for windows platform.but now after it, i need to develop the same addin for Outlook 2011 for mac OS platform. i don't know any thing for this, if any body knows how to start and where to start then please guide me.
22 Oct 2012 by dashingly
I had to check if value was null, but it only worked in the certain way: if (rng.Value2 != null){}
3 Jul 2013 by OriginalGriff
You want to use the application parameter, cast as an _DTE class:applicationObject = (_DTE)application;You can then use the ActiveDocument[^] Property."Couldn't really understand your answer could you elaborate?"When you write an addin, VS calls your method, and provides a number...
8 Aug 2013 by virusstorm
Office 2007 and 2010 came with the VSTO for their respective versions and 2010 was backwards compatible. With 2013, you need to install the 2010 or 2007 VSTO on the machine or update your project to VSTO 2013. Keep in mind the object factory model changed extensively since 2013 making it a fun...
8 Sep 2013 by PIEBALDconsult
Personally, I wouldn't; just as I don't include a .net or SQL Server redistributable. I'd just include a statement in the documentation/release notes of what else it requires and where to get them. Consider someone installing your product some years down the line when a new version of the...
23 Jan 2014 by Member 4686200
Globals.ThisAddIn.Application....
5 Feb 2014 by Member 10384369
i am writing visual studio add-in for company's internal usage. It is integrated via TFS command line utility, and it has its own menu in solution explorer (Check in, Check Out, Add to Source...).I want to know the state of the selected item in solution explorer, whether it is added to...
18 Aug 2014 by NStilling
1. Uninstall Visual Studio Tools for Office Runtime2. Delete the complete VSTO folder (C:\Program Files\Common Files\Microsoft Shared\VSTO) - IMPORTANT3. Install Visual Studio Tools for Office Runtime again
11 Nov 2014 by punitsingh
I have solved using this link.I have created two project, on e class library for UDF(Excel Add-in) and second for Com Add-in(Ribbon UI). And then using MergeModule Project.http://support.microsoft.com/kb/827025[^]
10 Aug 2015 by perdichizzi
I've created my own stencil and a set of classes to work on creating and reading Ms Visio Pages. My objective now is to know which are the 2D shapes of a connector on the start and end of it.So far I've tried using the shape.GluedShapes(Visio.VisGluedShapesFlags.visGluedShapesAll2D, "");...
26 Feb 2016 by Richard MacCutchan
I wonder what strange words you gave to Google; the first hit I got was Assemblies in the Visual Studio Tools for Office Runtime[^].
9 Mar 2017 by Vladan.Obradovic
Display additional properties for each VM inside SCVMM 2012 R2 console (VLAn, IP addres, VM Path, Mounted ISO, Number of Checkpoint)
21 Jun 2017 by Kornfeld Eliyahu Peter
C# and .NET is not - the only - problem here... VSTO add-ins are based on COM technology, that does not exists on Mac - it is a Windows only thing... So what can you do with it? Do HTML/CSS based Office add-ins... Office Dev Center - Docs - Platform overview[^]
30 Sep 2017 by Dave Kreskowiak
You're doing it backwards. The code you're running is on the UI (startup) thread. ALL UI STUFF, including your "spinner form" MUST be on the UI thread. Every little touch of every UI form and control MUST be done on the UI thread. Creating a thread to show a form or a control on it isn't going...
13 Sep 2018 by Richard Deeming
Path.ChangeExtension(String, String) Method (System.IO) | Microsoft Docs[^] string documentFileName = Path.ChangeExtension(xmlFileName, ".docx");
28 Nov 2010 by IndikaAthokorala
Hi,I'm finding a way to read the open word document and save it through the MS Word Adding.I want to use a ribbon button for that.Can anyone show me a path to do that? Thanks and best reagardsSanjaya
28 Dec 2010 by mslliviu
Hi, I have an Outlook add-on that stores a value in user properties part of an Outlook TaskItem. The saving part works well using the code below, but I want to be able to display this field in ToDoList as read-only. For the moment I am displaying it but the user can change the value. I...
3 Feb 2011 by realsehee
i want to make status bar indicators.look like this :http://dl.dropbox.com/u/12168496/K-20110204-587431.png[^]As a tool making it best to go easy? i can use some c/c++ and c#.please give me some tips. thank you.
14 Feb 2011 by bubk
At installation time is there a way to change the assembly path inside the .addin file. For example on a windows 32bit system I want to install in \program files\ and on a windows 64 bit I want to install in \program files (x86)\. I am using the Visual studio installer to install just don't...
7 Apr 2011 by Srinivas39
Hi guys,I've created one addin for MS Word 2007, can i add the same addin to the Outlook 2007 editor?If it is possible, can you tell me the way?Thank you in advance.Regards,Srinivas
7 Apr 2011 by Pete O'Hanlon
Typically, no it's not possible because the code typically gets quite tightly bound to the application. If, however, you're prepared to separate things out a bit, you can hive off the processing functionality from the portion that sets up the buttons, etc, then you can make a fairly generic...
8 Apr 2011 by Srinivas39
Hello Everyone,I've created word 2007 addin, i want to make that work for previous and later versions. Can anybody suggest a solution for that.Thanks in advanceRegards,Srinivas
8 Apr 2011 by Srinivas39
Hello Guys,I created an MS Word Addin. for which i want to install with macros dynamically in my program.Can any one tell me how i can install addin with macros?Thanks in advance.Regards,Srinivas
8 Apr 2011 by #realJSOP
"Macros" aren't available in .Net...
4 Jun 2011 by prathameshpitale
Hello,I have Designed an Addin for Microsoft Word, Which will disable Save & save as Button.Problem here is if some one Disables the Addin its AllOver! Can any one suggest me how to Disallow user to Disable Addin. Any Idea?Might be only Admin should hae right to Disable it.. or any other...
4 Jun 2011 by Abhinav S
Not sure, but have a look at the Verifyaddinpermissions[^] to see if it helps.
5 Jun 2011 by Sergey Alexandrovich Kryukov
It's a very bad idea to disallow disabling a plug-in. If ever used such obtrusive thing I would simply removed it and never trusted the company/author again. Don't be obtrusive.—SA
27 Jun 2011 by davmszd
I have installed VS 2010.In sample i find ADX Com Add-in under Extensibility. For me it is not available. What should i do to enable this?Any help would be appreciated.
11 Jul 2011 by Daniel0318
Hi All,I am developing an Outlook 2007 Add-In using Visual Studio 2010, C#. The goal is to be able to select multiple contact folders, and each folder has multiple contacts within.In the example below,http://98.130.241.249/project/img/02.jpg[^]I have two contact folders:...
10 Jul 2011 by Heath Stewart
What do you mean "select ALL folders"? If not, can you provide a use case?If you want to have access to all folders and other sources selected as address sources, use NameSpace.AddressLists. Each enumeration yields an AddressList which contain contacts.See...
21 Jul 2011 by Nguyen Duy Nghiem
I have a problem.When i've opened doc file from php website on PC then i was changing soe words on it. And so, i wish it could catch anything that changed on it return to website and create more another version of file on webste.My site was developed by PHP language.Thank so much
25 Jul 2011 by Daniel0318
I have a custom Search Folder that displays a filtered list of contact items. I also have a new empty custom Contact Folder.Is it possible to sync this custom Contact Folder with my custom Search Folder so whatever/whenever the contact items displayed in the custom Search Folder will also be...
26 Jul 2011 by uttam2010
I think u can customized ur contact folder as: MS OUTLOOK >>View >> Contacts >> rt click in contact panel =>select anyone[sort,filter,other setting]
1 Aug 2011 by dhiresh.mistry
Hello,I am aware of Visual Basic and C++ development, I want to create a add-in in visual studio which looks similar to Solution explorer. Which can be dockable next to solution tree.I want control on the tree structure where I can define what files has to be listed and in what order? Can...
11 Aug 2011 by ahsanriaz1K
Hello,Can any one tell me that by using google API, a small software/addin can be made which gives information about updation in a particular website and show updated pages?
15 Aug 2011 by Md. Marufuzzaman
Hi Guys:I want to trace the source and destination path information when an email moved inbox to another folder Or it may moved one sub folder to another sub folder. I am really stuck!! How can I achieve this, please help me to sorted out this.ThanksMd. Marufuzzaman
15 Aug 2011 by Wendelius
Don't know if this works in your case, but could you define a custom property to a mail item when you start tracking it. Then define a unique track id, for example new guid, to the property. Later on you could find the location of the mail item using this custom property as long as you know the...
18 Nov 2011 by Jyothikarthik_N
Hi,I've developed an AddIn for Visual Studio 2010.Project Type is Visual Studio Add-InUsed "Setup Project" type to deploy (Project Output = Primary Output + Content Files)After Installing on my machine, I'm able to see the AddIn through 1. Tools-> "Menu Item"2. Tools-> AddIn...
18 Nov 2011 by erlis.vidal
No comment yet? I'm needing this also. It makes me feel like this http://xkcd.com/979/
28 Nov 2011 by Case69
Hello all,I'd like to create my own custom node or folder list that will let me intereact with some other software. For example: My custom list will display a list of folders from a folder structure, WebDAV or EDM system. A user could then drag'n'drop emails to folders in my custom node. ...
1 Dec 2011 by Chef4code
Please, help me with the following question:first, I create a WPF user control in a WPF User Control Library project; then, I create a new visual studio add-in project, and then in the OnConnection method I call Windows2.CreateToolWindows2(...) method to create a tool window which hosts that...
8 Dec 2011 by mahendren
You may want to draw an image (for search or to show busy)see this link:http://www.codeproject.com/Messages/3010929/Re-Icon-in-a-textbox.aspx[^]
28 Dec 2011 by Andrew Piotrowski
Is there any Addin/Plugin for the Word 2010 ? I saw a template version for Word 2003 but i am looking for a better solution ?
3 Jan 2012 by Member 3150531
we are trying to retrieve a calculated value from a cell which has add-In (VBA) 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 value in our application using C#...
18 Jan 2012 by Tejas Vaishnav
I have develop one custom add in of outlook 2003, when i try it with the debug or build version using vs2008 it will attach with outlook. I want to create one setup project that will setup and add my add in with my out look.I have tried to go through this tutorial but it will not use...
19 Jan 2012 by Tejas Vaishnav
I want to add my own button to the message ribbon next to the find/search button in outlook, on the send/compose mail section window....i heard that it is possible using addin so i want the some example to do my work if it is possible then visual demo example to modify the existing ribbon on...
3 Feb 2012 by That's Aragon
I would suggest you to go with some tutorials. It will help you to understand how the outlook add-on works. Here are some very good links for starting.Link 1[^]Link 2[^]
6 Feb 2012 by jpr chaitanya
Hi,How do i copy the active email message selected text in outlook 2007 using C#.net, when the toolbar button is clicked bellow event is fired that event selected text to stored the sql server database how to write the code pls give me any suggestion , i am verify the link but that link is...
8 Feb 2012 by jpr chaitanya
Hi All,This is the scenario..The user selects a part of the mail message/body and I should be able to copy the selected items and it stores to sql server database Outlook.Application myApplication = Globals.ThisAddIn.Application; Outlook.Explorer myActiveExplorer =...
7 Feb 2012 by jpr chaitanya
private void savenumbers() { try { Outlook.Application oApp; Outlook.Explorer oExp; Outlook.Selection oSel; object oItem; long i; // TODO: On Error GoTo Warning!!!: The...
10 Feb 2012 by tagad
Hi, I would like to register an XLL while installing a project using MSI. I am using a VB.NET installer class to do this: Imports System.ComponentModelImports System.Configuration.InstallImports System.ArgumentExceptionImports Microsoft.Office.Interop Public Class...
16 Feb 2012 by mfcuser
I am using the following code to add a menu to visual studio here is the complete function (see below)it works fine; the problem is when i take it to a test station (I mean when I move the dll), when I first open visual studio it shows the menu, then when I close visual studio and open it...
17 Feb 2012 by Maciej Los
Take a look at my code...I have created windows application.I have placed on the form:1) 1x textbox - Name: TxtExcelAddin2) 2x buttons: - a) CmdBrowse (browse for addin) b) CmdInstall (install addin)Public Class Form1 Private Sub CmdBrowse_Click(ByVal...
26 Feb 2012 by zeroflag2010
From VBS (VBScript), it is possible to call a Windows API indirectly via Excel app and one of its add-in function, CALL(), see for details the Office/Excel online help and the following MS webpage on CALL...
17 Mar 2012 by iussishel
Wedding Dresses Wholesale Wedding Dresses Wedding Gowns Prom Dresses Bridesmaid Dresses Mermaid Wedding Dresses for sale Bridal Gowns 2011evening gowns Tea-length Wedding Dresses Trumpet Bridal Dresses
17 Mar 2012 by iussishel
Miu Miu bagMarc Jacobs bagLoewe bagJimmy Choo bagHermes bagMiu Miu bags onlinediscount Bvlgari handbagsAnteprima handbagsreplica Anteprima handbagsreplica Alexander Wang bag
17 Mar 2012 by kovinskyrubi
tiffanytiffany cotiffany and cotiffany jewelry stroediscount tiffany sliverCheap Tiffany ChainsTiffany Heart PendantsTiffany Cuff Linkdiscount tiffany braceletsTiffany Key Pendants
17 Mar 2012 by kovinskyrubi
boots onlinecheap bootsbuy bootsboots outletreplica bootsVivienne Westwood Pumps SaleGianmarco Lorenzi Wedgediscount Burberry SandalsBurberry Pumps shoesGianmarco Lorenzi Boots
17 Mar 2012 by dalvandencris
Moncler accessoriescheap Moncler accessoriesbuy Moncler accessoriesMoncler accessories onlineMoncler accessories outlet Moncler Jackets on saleDiscount moncler jacketsCheap Moncler Jackets WomenMoncler Women Bagscheap Moncler Womens Hoody
17 Mar 2012 by dalvandencris
ugguggsugg bootsugg australiaugg boots on saleKid UGG Boot On SaleUGG GlovesDiscount UGG ShoesUGG Australia SaleUGG BOOTS CHEAP
17 Mar 2012 by rlteruth
ugg boots on saleugg storeugg boots clearanceugg boots cheapugg clearanceUGG BOOTS ON SALEUGGS BOOT clearance UGG Classic TallBailey Button UGGUGGs Accessories on Sale
17 Mar 2012 by rlteruth
nike shoxnike shoesnike air maxcheap nike shoxBuy Nike shoesCheap Air Max 90 for Salecheap nike air force 1 premiumNike Air Max 91Cheap Nike Shoes for Salediscount nike shoes
17 Mar 2012 by ierissimolean
Ugg BootsCheap Ugg BootsUgg Boots OnlineUggs SaleUGG Classic Cardy Kid UGG Boot On SaleUGG Classic Mini UGG Sale CheapUgg Classic Tall Sale Classic Mini UGG
17 Mar 2012 by ierissimolean
paulsmith handbagspaulsmith shoespaulsmith walletspaul smith outletpaul smith storecheap PS By Paul SmithPaul Smith Handbagscheap Paul Smith Computer BagsPaul Smith Beltscheap PS By Paul Smith
17 Mar 2012 by orettsonjere
discount pandorabuy pandoracheap pandoracheap pandora salepandora onlinePandora SetsPandora SetsPandora EarringsPandora Sets onlinePandora Necklaces online
17 Mar 2012 by orettsonjere
jerseys onlinejerseys outletjerseys on salewholesale jerseysNFL Jerseyscheap Dallas Stars jerseysDallas Cowboys jersey Seattle Pilots jerseysauthentic blackhawks jersey Pittsburgh Pirates jerseys
17 Mar 2012 by miemanl
Miu Miu handbagMarc Jacobs handbagLoewe handbagJimmy Choo handbagHermes handbagbuy Anteprima handbagsdiscount pradaBally handbagscheap HermesValentino handbag
17 Mar 2012 by miemanl
discount jewelleryjewelery outletjewelery storejewelery on salejewelryThomas Sabo Earrings onlinecheap Chanel Earringsdiscount Thomas Sabo ChainsTiffany Cufflinksdiscount Links of London Pendants
17 Mar 2012 by rleierlaur
Tiffany Jewelry OutletTiffany onlineTiffanys & coTiffany Jewellerytiffany braceletstiffany ringstiffany ringstiffany accessoriesgold banglestiffany rings
17 Mar 2012 by rleierlaur
Cheap UGGCheap UggsCheap UGG Bootsultra short ugg bootsugg womens shoesblack short ugg bootsUGG Classic Cardy BootsUGG Classic Tall BootsUGG Ascot Slipperswomen's classic short ugg boots
17 Mar 2012 by cinhchon
uggugg bootsugg boots australiaugg australia uggsUgg Classic Argyle Knit Bootscheap ugg felicity bootsugg nightfall outletugg boots outletwomens ugg boots
17 Mar 2012 by cinhchon
north face storenorth face onlinethe north face storethe north face onlinecheap north faceNorth Face Gloves Salediscounted north face jacketsCheap Nortface JacketsThe North Face WomensNorth Face Socks
23 Mar 2012 by Member 8089561
I've created a custom form region for sending messages. Basically when composing a new message, replying, or forwarding you can toggle between the standard Outlook form or my custom form.The major functionality seems to be working. My only problem now, is when you toggle to my custom form...
3 Apr 2012 by Akhtarhusen
One of the differences between the components and the IDETools is, components must be patched both in Design Time and Compile Time, IDETools only need to be patched in Runtime. I have developed the addin which works in Design Time and Runtime, but not in Compile Time.thats why the idetools shows...
23 May 2012 by TRK3
Sounds like you want to use a static class or static member function:http://msdn.microsoft.com/en-us/library/79b3xss3(v=vs.80).aspx[^]
29 May 2012 by Tejas Vaishnav
Finally i found the solution for this.what i do for this is to access the mail item and use mail items send() method so it will fire Application_Item Send event automatically.like this.private void btnProtect_Click(object sender, RibbonControlEventArgs e){ //FormFactory is...
29 May 2012 by Maciej Los
If you have made an addin for MS Word 2007, it's - probably - compatible with previous version of MS Word, unless you used methods or objects which are not accessible in the previous version (like ribbon).You can't "make work" an addin "for later versions".
19 Jul 2012 by Member 9215330
All,I have devised some code to execute a method whenever a new workbook named "Book1.xls" is opened using an event handler :Excel.AppEvents_WorkbookOpenEventHandler(Application_WorkbookOpen)Is there a similar event handler for when a new instance of excel is created? I have a...
30 Jul 2012 by Kenneth Haugland
Could you tell me why you didnt write this:Dim curBook as New Excel.WorkbookAnd the error seems to be missing dlls:http://social.msdn.microsoft.com/forums/en-US/vbgeneral/thread/88a6ea68-f476-4231-822f-27fabe59f458/[^]
4 Aug 2012 by Vineet_2109
Same code worked..Nothing need to be changes
4 Sep 2012 by Maciej Los
List of avalible events for MS Excel Application, you can find here: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.application_events.aspx[^]The most interesting events are:NewWorkbook - Occurs when a new workbook is created. (Inherited from AppEvents_Event.)...
24 Sep 2012 by Mehdi Gholam
Read the following : http://social.microsoft.com/Forums/en/synctoy/thread/cf450935-9771-4435-b8a3-86f4701dc4c8[^]
15 Oct 2019 by dashingly
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 cleanV = System.Text.RegularExpressions.Regex.Replace(before, @"\s+", ""); ...
4 Oct 2012 by arshad alam
0 down vote favorite i am creating a add-ins for Microsoft Word. i have a tree-view control where i am generating Folder, files and File's bookmarks in hierarchical structure.For this i am using these code :void GetTree(string strSearchPath) { ...