Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
71 views

Embedded Office Application - How to know whether the app is running or the object is embedded

I am adding an Excel Worksheet object inside Word. Excel has a COM addin attached to it. Any idea how one can know whether Excel is running independently or as an embedded object? The COM Addin ...
3
votes
1answer
242 views

Export Visio Macros to Visio COM-Add-in

I have written some Makros and Functions in VB all code works fine behind my Document. To save my code and make it available to other users I want to create a COM-add-in for VIsio. So i bought Visual ...
2
votes
1answer
42 views

Outlook COM Addin bundle install with a seperate msi file C#

I'm trying to be able to bundle an Outlook addin (.dll file) that I've made in C# with a separate msi installer (not the default one created in Visual Studio). The add-in works great using the ...
2
votes
2answers
2k views

How it is correctly to implement IDTExtensibility2 interface for Office COM Add-In?

I am implementing COM Add-In for Outlook. I use IDTExtensibility2. I am not sure whether this is the best way of doing COM Add-Ins but I cannot change that. This interface defines five methods: ...
1
vote
3answers
168 views

Excel Addin - OnDisconnection/OnBeginShutdown not called on logoff

I have developed a Shared Addin for Excel using Extensibility IDTExtensibility2 interface in Visual Studio 2008. It's quite basic in functionality. When a workbook is opened it is stored in a list of ...
1
vote
1answer
324 views

Powerpoint displays a “can't start the application” error when an Excel Chart object is embedded in it

This is a very common problem when Excel Worksheet or Chart is embedded into Word or Powerpoint. I am seeing this problem in both Word and Powerpoint and the reason it seems is the COM addin attached ...
1
vote
0answers
119 views

Manually trigger Windows Error Reporting from a Outlook COM Add-In

I am writing a Outlook COM Add In using Visual Studio 2008 and VSTO. If an exception goes unhandled in the add in, I would like it to trigger Windows Error Reporting (WER). Our company has access to ...
0
votes
1answer
35 views

COM addin for MS Office doesn't load in a limited user account

I've created a toolbar for Word. It's a COM addin and is written in C++. It works when Word is started by an Administrator account in XP. But when Word is started from a limited account it's not even ...
0
votes
1answer
107 views

How to override 'Save As' event in Excel XP COM add-in

I am working on a C# COM add-in specifically targeting Excel XP. I need to display my own 'Save As' dialog rather than the normal Excel dialog. I tried handling the ...
0
votes
1answer
41 views

Raising an Event/Calling a Method on a MS Access form from a C# MS Access COMAddIn

I have an VS 2008 C# MS Access add-in and I wanted to know how I could raise events or call methods on an MS Access form. Simply put, how do I raise an event or call a method on a ...
0
votes
1answer
44 views

excel interop - how to run excel com add-in code

I have an excel add-in i created. What i want to do is to open an excel document in c# (ASP.NET) and run some code in the add-in and then return the excel document as an html page. Can this be done? ...
0
votes
0answers
32 views

Excel AddIn: a blank box shows up

VS 2008, .NET 35, C# Shared COM AddIn, Excel When a client installs my AddIn, when she clicks a button in Ribbon, a window pops up as expected. However, the text boxes, buttons in the window are ...
0
votes
3answers
136 views

COM Add-in not going away in word 2007

So ive got two different COM addins, one for word 2k3 and one for 2k7. word 2k3 works like a charm everytime, no issues etc...but now when I open word 2k7, the buttons from 2k3 appear in my 2k7 ...
0
votes
2answers
424 views

Excel OLE - .NET COM AddIn behaves differently when Excel is embedded in an application

I have a .NET (C#) addin that uses a COM Shim dll to load itself into Excel. The addin works fine without any problem when Excel is run normally. The addin displays its own custom toolbar in Excel ...