Microsoft Visual Studio provides project templates you can use to create application-level add-ins for Microsoft Office 2010 and Office 2007. You can use add-ins to automate Office, extend Office features, or customize the Office user interface.

learn more… | top users | synonyms

0
votes
0answers
13 views

Replace all the images in powerpoint slides using VIsual Studio tools for office

I want to replace all the images, whether it is of msoPicture, or it is contained in the msogroup, or it is inserted as embededOleObject. I have the following code to replace msoPicture: if ...
0
votes
0answers
15 views

Task-pane app stuck at “Loading…”

This happens to me randomly about 6-7 times out of 10 even without doing any modifications to the code. When I start debugging my app (it's an Excel task-pane app written in JS/HTML/CSS), it shows the ...
0
votes
0answers
33 views

Interop.Word.Document.Words border changes very slow

Hi! I'm working on a MS Word addin that marks certain words in a given text. Unfortunately, this operation is very slow. In a document of 50 pages (~26'000 words) changing the border style for about ...
3
votes
2answers
76 views

C# large numbers of static numerical arrays

An Office Add-In I'm developing is going to have a few dozen 120-length double arrays in it (statically). I could just make a class with a bunch of static member arrays and use array initializers, ...
0
votes
0answers
33 views

Integrating Windows-API-Code-Pack in Outlook Add-In - Manifest unselectable

I need to use the TaskDialog provided by the Windows API Code Pack in my Outlook Add-In. I recived this error: TaskDialog feature needs to load version 6 of comctl32.dll but a different version is ...
1
vote
0answers
34 views

Microsoft Word hangs after BeforeSaveAs with add-in on user PC

I have a C# 4.0 VSTO add-in for Word which hooks into the DocumentBeforeSave (to remove some custom marks in the document). This works fine generally but on a very small number of user machines ...
5
votes
1answer
183 views

How can you add a Custom Panel in a Visio 2013 add-in?

Recently I wrote an outlook add-in which has a ribbon.xml file for an extra ribbon, context menu's, etc. I also added an extra panel docked on the right of my window. Now I've begun some research as ...
0
votes
1answer
67 views

Is it possible to create an “all users” installer for an Office 2010 add-in using InstallShield LE (VS2012)?

I created an installer for my Office 2010 add-in using the InstallShield LE product bundled with VS2012. Wasn't exactly the most pleasant experience. Anyway, it installs the add-in under the users ...
0
votes
1answer
169 views

Word Interop Move Table Row

Does anyone know a way to move a row in a table? I have a table with dynamic number of row, that I want to manipulate by code (interop c#). For example I want to move the row with the index 5 to ...
0
votes
2answers
80 views

VSTO document level customiztion

VSTO document level Addins works only for that document which are saved in the system? its not works for the document which open from Mail attachement ?
2
votes
2answers
187 views

Getting started developing add-in for powerpoint

I would like to develop an add-in for Microsoft PowerPoint. I have Visual Studio 2012 installed and ready, but i can't seem to find any simple tutorials or getting started guides on the subject except ...
-3
votes
2answers
90 views

Using different program office extension

I have a program that can access a database with a whole bunch of articles. Due to copyright, I can't access the database straight from my program, but I have a different program that can access it, ...
0
votes
1answer
125 views

MsgWaitForMultipleObjects returns error for Office 2013 64-bit version

My company has an Office Add-in that works on Office 2007 and 2010 without problem. Now Microsoft has a new Office 2013, we need to test the add-in in Office 2013 (32-bit and 64-bit). Most of the ...
0
votes
1answer
236 views

Word Add-In Ribbon

I created an Office Add-In project and I added ribbon menu for application. When I build my project word document have my ribbon there is no problem. How can I save the active document as a file ...
0
votes
0answers
16 views

Office 2007 addin not throwing exceptions

I have an existing office add-in which was built using visual studio 2008 and ran on office 2007 & 2010. I modified this to work in latter versions of office (2007, 2010, 2013), built using visual ...
1
vote
0answers
212 views

(PPT Add in) Width and Height of PowerPoint Window

in my PPT Add in i want to display a WPF pop up window and it should be centered according to PPT window. here's my code: // get the postion and size of ppt window float winLeft = ...
1
vote
2answers
113 views

Saving the Project setting for TFS office add-in

I have scenario in which I am accessing TFS from outlook. I am doing the customization using office add-in. I don't want the users to give TFS connection setting every time they access TFS for the ...
1
vote
2answers
177 views

Is it possible tracking shape changes in powerpoint addin?

Currently on my project of ppt addin, I want to know if it is possible tracking shape changes made by the user: Text Box A Move to ( 210, 100) Text Box B Change Font to Calibri Text Box B Change ...
2
votes
1answer
140 views

Populate Word document from collection of Range

In my Word addin I have a list of Range copy from Document.Words collection like below: private void button1_Click(object sender, RibbonControlEventArgs e) { Document doc = ...
0
votes
1answer
124 views

Visual C++ : C2143

why would the following sniplet #include <atlcom.h> ... class FormRegionWrapper; ... // Errorsource : typedef IDispEventSimpleImpl <2, FormRegionWrapper, ...
0
votes
0answers
187 views

Visual C++ : PowerPoint Add-In .. sample? Where to start with? [closed]

I would like to write an Add-In for PowerPoint in Visual C++. I googled a bit, but couldnt find anything really helpful for a quick start. It seems that I should put a lot of effort to write even a ...
0
votes
1answer
209 views

Adding export option to Office 2010 backstage view

I cannot extend Office 2010 UI even when I use the code from MSDN. This is the code I think should work: <?xml version="1.0" encoding="UTF-8"?> <customUI ...
2
votes
2answers
2k views

Set custom document properties with Word interop

I want to set some custom document properties of a word document I'm creating in my C# code. To do this, I followed this MSDN article and came up with this code: using Word = ...
0
votes
0answers
219 views

Office 2013 Preview export add-in

I would like to build an export add-in like Create PDF/XPS Document. I have installed developer tools to VS2012. The XML code looks like this: <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
1answer
356 views

How to load excel macro modules from .bas files using c#?

I'm trying to write an excel add-in that automatically add predefined modules into the active workbook. The "predefined modules" should meet the following two requirements: these modules are ...
0
votes
1answer
95 views

How to add an item to the Powerpont context menu using .net add-in project

I've never wrote an office-plugin before, and I'd like to add my-own functionality to Powerpoint. I want to add an item to the context menu that pops-out when the user select a slide, an when this ...
1
vote
1answer
177 views

Launch Condition for checking Visio 2010 installation does not work on Win 7 64 bit with Visio 2010 64 bit version

We have a visio 2010 add in deployed using msi created with setup and deployment project in visual studio. The setup project is having a launch condition to check the registry and prompt user if Visio ...
1
vote
1answer
87 views

Unexpected and really weird hang-up due to folder creation and message box display in Outlook 2010 during debug only

Sorry for the title... This would easily win "the weirdest thingy of the week". I hope someone at least can give me a hint on how to investigate what's going on here... When i run my add-in using ...
1
vote
1answer
278 views

Serialize current ActiveDocument from office 2007 add-in

Im creating a VSTO Office 2007 add-in. I need to be enable or find a solution where I can save to a webservice with a byte[] instead of hard drive. So, I open the document by going to a website and ...
0
votes
0answers
116 views

office 2010 addin save as menu item not working

I'm building an office 2010 add-in that will send document's to a sharepoint server. It's working, however when I'm opening an existing document, the office menu item "Save As" stop working. I believe ...
0
votes
2answers
208 views

Office 2003 and extensibility.dll deployment blues

I have been trying to create a deployment for a C# Outlook 2003 add-in. It requires only NET 2.0 and relies on IDTExtensibility2 (of Extensibility.dll). Upon making sure Office 2003 PIA are installed ...
1
vote
1answer
193 views

My vsto file is not recognized by Office 2007

I have created an add-in VSTO for powerpoint 2007 but my .vsto` file is not recognized (apparently the right format is .ppam) but when I build it creates a .vsto file, how can I get a correct file ?
2
votes
1answer
101 views

Making single installer for addins of multiple Outlook versions

I am making outlook addins separately for Outlook 2003, 2007, 2010. I want to write a single installer that can install the addin basing on which outlook version is being used. How to do that? Because ...
0
votes
0answers
114 views

How i open msword file using msword addins?

Actually i am trying to develop an addin which is responsible to open document files and after editing on those file also save it. I develop a Custom taskpane in which i add 2 objects, one is ...
0
votes
1answer
89 views

Microsoft Office Addin 2007 and 2010 Custom help topics

I am responsible for a Office Add-in and need to know if it is possible to add help to the Microsoft Help for the add-in. i.e. when F1 is pressed open a page in the help containing information on the ...
0
votes
1answer
203 views

Get information in a current appointment item to an addin

I'm pretty new to programming Outlook addins in VB.Net. I want to send an email out with the recipients and the body of a meeting item when the ItemSend event is triggered. How should I reference ...
1
vote
1answer
1k views

Change text backgroundcolor in Word

the situation: .net 3.5 c# or vb.net(also tested) word 2007 add-in I'm trying to set the Background Color of the text to a custom rgb color. The code is the following: Range r = ...
1
vote
1answer
917 views

Generate Code from a Visual Studio Extension

I have a project that generates text (representing an interface and a class) based on metadata. I would like to take this generated code and insert it as a new class and interface directly into the ...
0
votes
0answers
666 views

How do I create this simple MS word add-in?

What I really want to do is very simple. We have multiple Word documents that have multiple hyperlinks that refer to documents on various SharePoint sites. The issue is that the locations on the ...
1
vote
3answers
545 views

Creating version independent Outlook add-ins

Looking for a library to create outlook add-in's for outlook 2010, 2007 and outlook 2003 Found this http://www.add-in-express.com/add-in-net/video.php which looks very good but also pricey since it's ...
1
vote
2answers
254 views

Switch between excel tabs within code

Is there anyway to switch between excel tabs within code? I'm creating and Add-In which will be loaded in certain conditions. Then I want my add-in tab to be selected as default tab on start-up... ...
1
vote
0answers
150 views

How to register for a custom event on an office add-in from .net

I'm trying to write an add-in for Word 2010 that will allow .NET applications to register for custom events from the add-in. I have it mostly working, in that my add-in runs correctly and can pass an ...
0
votes
1answer
264 views

Use .NET Framework Libraries in 64bit assembly referenced from VBA7 in Excel

I have a library written in C# that uses standard .NET framework libraries (System, System.Windows.Forms). This library is COMVisible as well as its classes, I just have two classes: - TestClass (a ...
0
votes
0answers
70 views

Need some VS Build Advice or Solution

I have a VS 2008 Project that is a Office addin. It absolutely requires to be x86 Compile. (ANY CPU doesn't work.) There is a function/feature of the addin that captures thumbnails of PowerPoint ...
0
votes
1answer
219 views

Custom task pane support in Office 2003

I have created a C++ Office 2007/2010 add-in that exposes a custom task pane via ICustomTaskPaneConsumer and by implementing an ActiveX control. This works perfectly. Now I want to include support ...
1
vote
4answers
1k views

Localize Office add-in based on Office language pack in use rather than Windows' current language

I'm trying to localize my office add-in, I've read through many docs and tutorials on how to do this, but they all teach on how to localize it based on what the current Windows language, not ...
3
votes
2answers
737 views

VB6/VBA Do not Allow COM Add-In to load

I have a VB6/VBA application that hooks into Excel and loads a workbook. It has been working great for many years. We have now upgraded to Excel 2010 and have ran into some issues. After ...
0
votes
1answer
137 views

My Word office addin doesn't work?

I have created an office addin for Word 2010 targeting .net 4 and this should apparently work in office 2007. I have created the installer per this article with the exception that I include a dll in ...
0
votes
1answer
157 views

Is there a way to integrate custom help into the Office 2010 Help System?

I'm working in an Excel add-in. I want to add its own help. I don't care if it replaces the general Excel help - I want to know how. What I was able to was to add custom help into VS 2010, using the ...
2
votes
1answer
389 views

Office add-in ribbon won't go away after debugging

Using Visual Studio 2010 I created an Office 2010 Word add-in project that has a ribbon with a couple of basic controls. I haven't even added code yet. When I debug the project Word launches and ...

1 2