Tagged Questions
0
votes
0answers
12 views
C# Hover Effect in MS Word Addin
I am working on an addin of Microsoft word.
What exactly I want to do is, same as Styles group of MSWord.
When I hover the RibbonGallary item, it should relfect on the document,
Just like I created ...
0
votes
0answers
70 views
Excel Add In's Custom Ribbon Tab Will Not Display
I've created an application level add-in for Excel to automate some tasks. I used the VS2012 template Visual C# > Office > 2010 > Excel 2010 Add-In.
Rather than having an action pane open every time ...
0
votes
2answers
37 views
Can't find the list of most (all?) tab names for the ribbon in Office
After some heavy googling, I've concluded that I'm unable to locate information on the id names for the different components of the ribbon in Office.
For instance, even though the following XML ...
1
vote
0answers
22 views
Outlook Add-In becomes inactive after Windows Update
I have written an Outlook add-in (VSTO in C#) and now the problem occurs that on some machines (all Windows 7) with Office 2010 installed the Outlook add-in suddenly becomes inactive after a Windows ...
1
vote
1answer
60 views
Outlook 2010 VSTO Change Attachment Size on Filename
Hello I am writing a Outlook 2010 addin and I basically I need to manipulate the size of the attachment being show in the OL Inspector, where the attachments are listed, or just not show the size.
...
0
votes
1answer
21 views
How to get rid of the menu bar of a custom task pane?
Hello,
I have constructed a simple custom task pane for Excel, and woud like the top of the user control inside the pane to align with the top of the column headers, but there is an ugly menu bar on ...
0
votes
0answers
104 views
Refresh data in excel Add-in in C#
I'm using visual studio C# to write an add-in for Microsoft Excel 2010.
The needed data for the add-in is given by webService and the database is being updated during the day.
The add-in should ...
0
votes
1answer
77 views
custom Ribbon is loaded before ThisAddIn_Startup, but I'd like to initialize some things there - best solution?
I'm developing a Word Add-In with its own Ribbon tab. Most of my actual code is contain in some Service classes that get initialized in ThisAddIn_Startup and assigned to properties of the ThisAddIn ...
1
vote
1answer
40 views
Excel addin (C#) + SharePoint 2003
there is Excel add-in that generates an information sheet. The client has this Excel addin.
There is portal SharePoint 2003.
On the client in Excel addin there is a button to click which add excel ...
0
votes
1answer
198 views
How to redistribute Visual Studio 2010 Tools for Office Runtime with InstallShield correctly?
Using: VS 2012,
InstallShield 2012 Spring Express
For my Excel Add-In I need to redistribute to prerequisites:
- Microsoft .NET Framework 4.5 Full
- Visual Studio 2010 Tools for Office Runtime
There ...
0
votes
2answers
245 views
Excel addin. Missing Ribbon (XMl)
I developed Excel addin to Visual Studio 2012.Use projects Excel 2010 Add-in. In the project has created a Ribbon (XML):
[ComVisible(true)]
public class PricelistRibbon : Office.IRibbonExtensibility
...
2
votes
0answers
76 views
Add command to every context menu associated with text in word 2007 `
it is pretty simple to add a command to the context menu in Word 2007 like shown here but is there a way to add the command to all context menus associated with any kind of text. I've tried iterating ...
1
vote
2answers
170 views
Referencing an excel sheet from a Windows Form in Document Level Customization
I thought I'd try to learn VB.net and start with some VSTO (VS2012). I'm trying to do an Excel Document Customization with a separate Windows Form in it (.show on load). I can get the form to open ...
0
votes
1answer
278 views
Best Practices to handle multiple open workbooks in an Excel VSTO add-in
I'm working on an Excel VSTO add-in in VB.Net. I am trying to address the question of knowing which workbook my add-in should be effecting given that a user may open or close many workbooks before, ...
0
votes
1answer
188 views
Excel VSTO Workbooks.Open only working when another action is taken first
I am working on a VSTO add-in. I have a customized ribbon, and on that ribbon a button called TemplateCallButton. I also have several other functions and buttons, one of which just opens a folder ...
0
votes
0answers
125 views
word addin disable application events temporarily while vba macro is running
I have a Office 2007 Word addin created with Visual studio 2010 with code as shown below:
Public Class ThisAddIn
Private Sub Application_DocumentChange() Handles Application.DocumentChange
...
0
votes
1answer
90 views
How to debug Office add-in running in Citrix environment?
I have a VSTO-based PowerPoint add-in that runs fine on Office 2007 and Office 2010. I have users running this add-in every day, day-in, day-out.
I'm now working with a new client that uses Citrix ...
0
votes
1answer
126 views
VSTO Outlook Add-in referencing external libraries fails
I'm working on a VSTO add-in for Outlook, versions 2007-2013and minimum .Net version is 4.0. In my project I have a couple of referenced libraries. When I deploy the add-in via MSI (built via Wix) ...
0
votes
1answer
72 views
ClickOnce Setup instantly stops executing
I've got a problem with a ClickOnce Setup and have absolutely no idea what I'm doing wrong...
I'm trying to publish a VSTO AddIn for Outlook 2013 using VS2012. However when I click on the Setup.exe ...
0
votes
0answers
157 views
In Excel application-level C# add-in, set Data Source without wizard
I am trying to write an add-in that will allow a user to connect to a SQL database and draw the data from a table into Excel. (This is the simplest explanation, but not the entire explanation of the ...
0
votes
0answers
23 views
Addin Powerpoint
I wonder if someone has an idea about implementing a Shape (Interop.Powerpoint) in powerpoint or extending a class (e.g Rectangle) using visual studio (C# or vb.net).
For exemple, changing the ...
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
60 views
Multiple instances of Powerpoint
I want to maintain different exes for each instance of the Powerpoint application.
On the web there is famous solution to invoke the power point using "run as" command which
opens UAC dialog on ...
0
votes
0answers
206 views
Get external data into excel Power Pivot programmatically using an add-in
I have an ODATA data source which needs some custom client side authentication. My requirement is to import this data into Excel for analysis using PowerPivot. I was able to create a custom add-in ...
2
votes
1answer
86 views
Working on Excel add ins
I am developing an excel add in with my following code .
I created a Class library and added the following code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
...
-1
votes
1answer
89 views
Designing User Define Functions in Excel? [closed]
What are the different methods to create user defined function in excel using C#??
Till now I could only find User Defined Functions in C#
Thank you all
0
votes
1answer
245 views
Developing User Defined Functions in Excel using C#?
I am developing a User defined function in Excel using C# and Class library in VS 2010.
I followed the tutorial at How to Create UDF in Excel using C#
The code works well and it gets Registered.I can ...
0
votes
0answers
43 views
Access the elements created in InfoPath from Add-In (C#)
I have a VSTO add-in which has a Ribbon and a button.
In my InfoPath Designer 2010, the user will create a form template and click in my button.
I need on my VSTO get the elements he has created and ...
0
votes
2answers
186 views
how to find list of addins in a word application
I've created an office:word add-in using visual studio tools for office (VSTO).
I've modified the loadehavior of the add-in to '0' to stop its auto load behavior.
My requirement is to start an word ...
1
vote
0answers
119 views
Visio 2010 Add-In Error when debugging: DisconnectedContext was detected
I have a very strange problem with my (VSTO) Visio 2010 Add-In. The AddIn processes many visio vsd files sequentially. What I basically do is a loop thru all vsd files in a given folder. For each vsd ...
0
votes
1answer
225 views
Need help deploy a VSTO addin using clickonce
I created a VSTO addin for MS word 2010 and deploy int using clickonce deployment in VS 2012.I compressed the publish folder to .rar file.An end-user will download the rar file, extract and run the ...
1
vote
1answer
194 views
How to read an rtf from a file and insert it into a body of an Outlook item?
I am attempting to write an Outlook Add-In that has functionality very similar to the insert signature feature of Microsoft Outlook. I best and most detailed thread I found discussing something ...
-1
votes
1answer
116 views
Order of events when opening a presentation in PowerPoint?
I'm kinda confused about the order of events in VSTO when opening a new PowerPoint presentation. Does anyone know it? Google gave me nothing.
Thanks in advance,
Léster
0
votes
3answers
506 views
Outlook Add-In - Enable/Disable Button during Runtime/from Code
Initial Situation:
We are developing an Add-in for Outlook 2010 in C# with VS.NET 2010 based on Framework 4.0, VSTO, DevExpress WinForm Controls. In Designer we have a Ribbon with a RibbonTab, then ...
0
votes
0answers
149 views
Sometimes popup window disappears in Excel
I am working on excel vsto project. I have implemented ProgressBar window to show background progress. I have written one public method to run this background form. It's working properly but sometime ...
1
vote
1answer
222 views
Outlook Event is not getting fired on click of custom button
I am developing a Microsoft Outlook Add-in, where I have added one button in Add-In tab name OPENISMS. I could see the button, however on click the event is not getting fired. I have no clue why it is ...
0
votes
0answers
154 views
Shape.Export ScaleWidth/ScaleHeight args
I am currently trying to export shape to an image via Add-In in C# in PowerPoint 2007/2010 (add-in written for 2007, debuggin in 2010).
When I export a slide background it is being exported with DPI ...
2
votes
0answers
437 views
My Excel 2010 Add in only shows up when opening a blank workbook. Won't show up when opening existing document
We have made an excel add in that is installed correctly and will only show up when opening Excel from the main icon (or a blank workbook). It will NOT show up on the toolbar when opening any ...
0
votes
1answer
125 views
Error on uninstalling / installing VSTO Excel plugin
I have a problem with VSTO packages. I now, there are many ways to cleanup the download cache, to deinstall the app and much more, but i tried it all and still have the problem.
I deinstalled the ...
7
votes
2answers
309 views
Create outlook addin without need for admin rights
I wrote an outlook addin with some basic functionality to access a webservice and execute methods on it. Everything works like a charm, except that I can't seem to get rid of the fact that users need ...
0
votes
0answers
118 views
Calling Excel Add-In from Word Add-in
I have an Excel add-in wirtten by me. Now I want Word add-in that calls some functions from the Excel add-in that are exposed by an interface:
Class that is exposed in Excel:
[ComVisible(true)]
...
1
vote
0answers
204 views
Outlook adds `<span style='color:blue'>` to HTML links
I am creating an Outlook add-in using C# that searches for a link in an HTML (new) email body signature when a user clicks on Send button in Outlook email. I am hooking into Application_ItemSend ...
1
vote
1answer
79 views
Prevent Office “Add Comment” button in Review ribbon
We have a custom add-in ribbon that I maintain (that's not a COM shared 'extensibility' add-in) that is using comments and track changes functionality (e.g. there are several buttons related to ...
1
vote
0answers
335 views
Dynamically add and delete Data Validation in vb.net
I have been working on this problem for hours now. I've tried and looked everywhere but can't find the answer
I'm trying to add and delete Data Validation (as well as the inCellDropdown) to a Range ...
1
vote
1answer
297 views
Why does Microsoft Word fire the DocumentOpen event for an already opened document
I have a Microsoft Word Add-in using VSTO and interop. My code is having issues if the DocumentOpen event is fired for an already open document. I've been able to consistently replicate this by ...
2
votes
1answer
102 views
Outlook Addin Not Loading on Windows xp
I have created an Outlook 2007 addin using Visual Studio 2010 and deploy it using click once.Whenever I install the deployed exe in my local system, it works fine.When I am trying to install in an ...
1
vote
1answer
669 views
Outlook COM addin installed but not loading in Outlook
I have created an Outlook addin using Visual Studio 2010 that installs fine and creates the appropriate registry keys and folders in Program Files (x86) as I have specified and it shows in Add and ...
1
vote
1answer
99 views
Exceptions in WPF Word Addin are not being handled
I am creating a WPF Office add in, and I would like to handle all exceptions in one place. To do this I use the following code in the constructor of my MainWindowViewModel:
...
1
vote
1answer
631 views
Editing the Text of Word Document Range removes paragraph formatting
I'm using Office Interop with MS Word (Microsoft.Office.Interop.Word) and Microsoft.Office.Tools.Word to modify a word document in a Word Add-in. I have a Range which contains specific text I want to ...
2
votes
1answer
172 views
Button in Outlook's MailItem body which would call internal addin function
I'm developing an add-in in c# for outlook's 2007 and 2010.
Lets say I have Outlook.MailItem object of currently displayed mail and I want to replace part of the mail text with buttons, that would ...

