Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
99 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 ...
3
votes
2answers
311 views

How can I programmatically bring up the document properties window in Word and go to the Summary tab?

I am developing a VB6 COM add-in for Microsoft Word and I have added a button to the Ribbon which will save the document to a database. But before the document is saved, I want to take the user to ...
2
votes
0answers
182 views

Outlook 2007 addin using C#

I am creating a addin for Office 2007 using C#. This addin is responsible to display email header information in a new pane whenever a user clicks on email from email list within Inbox pane. Now I am ...
2
votes
1answer
400 views

Get the Outlook Mail Count by Sender Name

I am developing an Outlook 2007 Add-in in C#, where I need to count the number oif mails a particular sender has sent ? For example, person A has sent 5 mails, person B has sent 10 mails & ...
2
votes
1answer
2k views

How to add tabs to PowerPoint 2010 that call macros

I have created a pptm file with macros that open certain pptx templates. I then created a new tab with buttons for opening the files. I attached the macros I created to those buttons. All works ...
2
votes
2answers
644 views

Add a custom Ribbon group to an existing custom Ribbon group in word 2007

How can I add a new group to an existing (3rd party) custom ribbon tab add-in? I know that I can add to out of box ribbons by specifying the Tabs idMSo value but how do I do that for a custom ribbon ...
2
votes
1answer
417 views

How to build an Office Add-In without registering it on the build system?

We are building Office 2007 add-ins using Visual Studio 2008. Our builds are performed via a continuous integration server (one machine) that builds whenever we check in changes or manually request ...
2
votes
5answers
1k views

What is the best way to package and distribute an Excel application

I've writen an Excel-based, database reporting tool. Currentely, all the VBA code is associated with a single XLS file. The user generates the report by clicking a button on the toolbar. ...
1
vote
3answers
88 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 ...
1
vote
1answer
88 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
vote
1answer
561 views

Deploying Office 2010 addin

I've created two addins, one is shared addin (for Excel, Word and Outlook) and another one is for Outlook. They work fine on my machine (where I developed it). Framework used: 4.0 I've created a ...
1
vote
1answer
118 views

Office 2010 AddIn development - Can I from code-behind read what theme the user is using?

PowerPoint 2010 comes with three default themes, silver, black and blue. Is it possible to check which theme the user is currently using from code-behind?
1
vote
1answer
495 views

Office 2007 add-in takes long time to load the first time

I have Office 2007 VSTO add-in, it uses ribbon XML, and so on. When the Office is first started after the reboot, it takes significantly longer time, than when it is started for the second time. The ...
1
vote
1answer
605 views

Error MSB4062: The “GenerateAndPersistAppInfoTask” task could not be loaded

We have added a number of Office AddIn projects to our TFS-built solution and now it's breaking. We are using Visual Studio and TFS 2008 (SP1). 4 projects have been added, one for each of the ...
1
vote
1answer
221 views

SQL Server CE + Addin Read and Write Collision Avoidance?

We have an Office Addin that uses Sql CE with the usual DBConnection to a *.sdf in the filesystem ('C:/...etc...'). When we start two copies of the application having the Sql CE-augmented Office ...
0
votes
0answers
19 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
36 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
48 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
74 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 ...
0
votes
1answer
32 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
59 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 ...
0
votes
1answer
44 views

Store BLOB in Docx

How is it possible using C#/.NET (with Office Add-on for Office 2007/2010) to store arbitrary additional information in Docx (on-save)?
0
votes
1answer
210 views

Is it possible to add an edit box or combo box to CommandBar[“Text”] in Word?

I'm trying to add an edit box or combo box to one of the context menus when my Word add-in loads. But I haven't succeeded, and I don't get any errors, the edit/combo box just don't show up. ...
0
votes
1answer
55 views

use Outlook Add-In for 2003 in Visual Studio 2010

We created an Outlook add-in 2003 in Visual Studio 2008. We just moved to Visual Studio 2010. When we debug the project, it shows that required version of Office is not installed. Is there any ...
0
votes
1answer
205 views

VB macro or office addin for mac

Currently we developed a VB macro for word. While we tried to use it on mac it failed with message "VB Macro not supported in mac". Is there a way to c# office add-in for mac? My requirement is to ...
0
votes
1answer
105 views

Creating a plugin for outlook with VS 2008

I've created an outlook add-in using Visual Studio 2008. What I want to do is add a menu item to the right click context menu of an email item. Does anyone have a sample or two of how to do this?