1
vote
1answer
63 views

How to add on mouse hover effect in Word 2010 addin

I wish to add text to the bottom of the font hover menu in word add-in: But i cant find any documentation regarding this specific menu. ADDED My goal is to get an onmousehover effect while ...
1
vote
0answers
57 views

Word Add-In: Add submenu to CommandBar

I am trying to add a submenu to the CommandBar in Word application. The code below is part of what I have wrote. For now I only managed to create a button in the right click menu that fire's an event ...
5
votes
1answer
190 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
0answers
78 views

BuildingBlockEntries.Add does not reflect until word is reopened

We have a word addIn and we add a new building block. It does not reflect in the UI until word is restarted. Following is how we add it. public void SaveSelectionIntoGallery(string galleryName) { ...
0
votes
0answers
63 views

Office Add-In printing in C#

Is there any posibility to use MS Office to print files using C# COM Add-In? I need to convert Outlook 2010 e-mails as they are formatted to user to PDF. The best way I thought of is using free PDF ...
2
votes
1answer
201 views

Strange behavior when showing WPF window in Outlook

I use the following code to show my WPF window from the new message window in Outlook: private void DisplayWindow(Window window) { var wih = new ...
1
vote
0answers
214 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 = ...
0
votes
2answers
70 views

Microsoft office verify add-in loaded

We developed a COM add-in for microsoft office. We would like to make sure that our add-in is loaded when the office application starts (meaning that no one tried to disable it in the registry). Our ...
1
vote
1answer
426 views

programmatically control ribbon in office add-in at runtime

I am creating an Outlook add-in which is going to open a new window and collect some information before sending it as an email. To get the Outlook layout I have tried to create a taskpane in the new ...
1
vote
0answers
186 views

add bookmark as file in the treeview and open it on double click

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 ...
0
votes
1answer
711 views

Outlook 2010 special folder Add-in

Currently I am aimed to create Outlook Add-in, which would create specific archive folder. The difference from the regular one is that mine should provide me full control over item's content during ...
0
votes
1answer
165 views

Creating ExcelAddin in Visual Studio 2010

i want to create an excel AddIn .it is simple : File>New Project > Visual Basic > Office > Version 2010>OK but an error says "Object reference not set to an inctance of an object"! my VS version ...
0
votes
1answer
283 views

App.Config for Excel Automation Add-in

I'm developing some Excel UDFs via .Net Automation Add-in (Visual Studio 2010, .Net 4.0, C#). My functions validate the parameters that get passed using EntLib 5.0 Validation block. This works fine ...
3
votes
1answer
1k views

Access Ribbon Elements Programatically in XML Ribbon

This seems to have been asked several times on here with no real answer: Accessing Ribbon Controls Programatically in an XML Ribbon Office Ribbon: How to access a control when the ribbon was created ...
0
votes
1answer
365 views

Activate an Excel ComAddin from C# code

In fact, I have a C# application that is runned. When it's launched, it runs an excel instance and save it to a variable : excelApp = new Excel.Application(); Then I cycle through each of the excel's ...
1
vote
1answer
494 views

Office 2003 Add In using VSTO 2005 SE and C# in Visual Studio 2005 Profesional, Win XP

I have developed an Add In for Word 2003 in C# using VSTO 2005 SE. The Add In creates a button near the Help button called International Projects. When the Add In is loaded, it gets some data from a ...
2
votes
1answer
507 views

Powerpoint 2010 VSTO AddIn taskpane on multiple Windows

I would like have a taskpane displayed on each document-windows, I have read all MSDN articles about it, but it doesn't work. I click on ToggleButton1 when 3 or 4 document are open, and i get 3 or 4 ...
0
votes
0answers
103 views

Microsoft Office Add-Ins

I have a question about Add-ins to outlook 2010. I would like show my own application (WPF) in Outlook. But I don't know how. I find only something about form region but it is not that I want. Thank ...
2
votes
0answers
639 views

Installation of VSTO Office addin using WiX

I've made an Excel addin and tried to install it using this answer: How do you use WiX to deploy VSTO 3.0 addins? It doesn't work this way and I figured out that when Visual Studio deploys addins it ...
1
vote
1answer
266 views

excel add in to save internal data?

I am new to writing excel add-in (in C#) and trying to figure out the right way to save some internal data structures so I can restore the state the next time file is opened. I can convert data in ...
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
361 views

Events in an InfoPath 2010 Add-in

I'm currently trying to implement a simple Add-In for InfoPath 2010 Filler/Editor mode, which adds a few buttons on the "Insert" ribbon, which upon clicking inserts some "template" data from another ...
1
vote
1answer
1k views

Windows installer for office add in

I created s set up project using this link. The addin was not getting installed. When I tried to add it through add ins in excel it said "xxx is not a valid office addin". This error is because the ...
0
votes
1answer
364 views

.NET C# Office Shared Add In WCF Service reference exception

I have created an office shared add in using Visual Studio 2010 .NET 4.0. This add in references a WCF service. When creating an instance of the WCF service client, i get the following exception: ...
2
votes
1answer
161 views

Capturing an MS Office autoshape click event

I think the answer to this question might be that it's impossible, but I'd like to have this confirmed by experts on the subject (of which I sadly am not...) I have made a set of macros in Excel ...
1
vote
0answers
186 views

OneNote COM Addin only loads manually

I have been working on a COM add-in for OneNote based on the tutorial at http://www.malteahrens.com/#/blog/howto-onenote-dev/ and http://support.microsoft.com/kb/2555352. It builds fine, however, ...
2
votes
1answer
365 views

How to check that Word 2007 invoke autosave into word addin?

I have some functionality inside DocumentBeforeSave event handler. That's should work only when user manually invoke Save (press Save button). But word 2007 have autosave function and event ...
4
votes
3answers
2k views

Is there a way to access a Ribbon (XML) at run time?

I'm working on a Word 2007 app-level add-in. So far, I haven't experienced major obstacles except for converting the add-in's Ribbon interface to XML. I have to use Ribbon XML because the feature I'm ...
1
vote
2answers
4k views

Office 2010 Add-in deployment

I'm searching the way in order to properly deploy a Visio 2010 Add-in. I tried to publish it via ClickOnce, and it does the job. But I would like to have just one file, in Setup.exe style. So I oped ...
1
vote
0answers
637 views

MS Office for Mac 2011 Add-Ins development [closed]

I would like to develop Add-in for office for Mac 2011. But I cannot find any manuals about Add-Ins development. Does anybody know how to develop Add-Ins for Office for Mac?
0
votes
2answers
3k views

(Word VBA) How do I call a macro function in a global template/add-in from another template?

First, I am a VBA newbie. So please pardon my ignorance. I have a global template that I installed in the Word startup folder. The global template has some macros that I would like to access. But I ...
0
votes
1answer
213 views

Office COM add-in, dialogs don't have the luna/aero theme (they look like Windows 98 classic look)

I have an addin for Office 2007 which adds a toolbar with some buttons and handlers for their OnClick events. When the user clicks on the buttons, some dialogs show. But those dialogs have the dated ...
1
vote
1answer
1k views

C# VSTO Outlook 2007: <dll> is not a valid Office Add-in

Hi i am developing Outlook 2007 Add-in in Visual Studio 2008. When I press F5 in VS editor, Outlook is normally opened with my plugin. But if I want to add plugin manually from Outlook (Tools -> ...
0
votes
1answer
657 views

Microsoft Office 2010 Excel Add-In (or UDF)

I have created an automation add-in with a UDF that converts a given number into a string (ex. 100 = one hundred); like a class library in Visual Studio 2010 in C#, and it works with MS Excel ...
2
votes
1answer
3k views

Using 32bit COM addin under MS Office 64 bit

I am struggling to apply an existing 32bit COM addin to 64bit Microsoft Word 2010. To make the addin visible to Word, I have used the dllsurrogate-method, as it described here. The problem is that ...
1
vote
1answer
460 views

Creating a Word 2003 Add-In Toolbar

I have been perusing the internet in search of the best way to accomplish this, but have had no luck. If someone here has experience with Office add-ins, I would really appreciate any help, I'm not ...
1
vote
1answer
401 views

How to open a new Live Meeting window programmatically

I am currently engaged in developing a add-in for MS outlook 2007. I need to open a new Live meeting(conferencing request) window programmatically. This is exactly same as the action performed when ...
1
vote
1answer
547 views

Access RichTextContentControl Text from an AddIn in MS Word using C#

I've created an AddIn for MS Word. There's a new tab and a button. I've added a new template document that has a RichTextContentControl in it. WORD_APP = Globals.ThisAddIn.Application; ...
0
votes
1answer
187 views

COM AddIn for Outlook Tries to Install Self on Startup

I have an outlook addin that I have been developing for some time now, and am experiencing a problem. If I have a computer with two 'administrator' users (call them User A and User B), the addin ...
2
votes
3answers
806 views

Where do I put my Office Add-In configuration page(s)?

I'm writing a COM add-in for Word, Excel and PowerPoint. This add-in has some user-configurable settings (about a page full of them actually... or perhaps even more than a single page). What is the ...
0
votes
1answer
475 views

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 ...