Tagged Questions
0
votes
0answers
29 views
Difference between Office.Interop and Office.Tools
I've found this link where it's claimed that the relation between Office.Interop and Office.Tools is that the latter is a wrapper to the former.
When I switch the version to a later distribution like ...
0
votes
1answer
27 views
VSTO project is it possible to add colors and items from windows forms
In VSTO, I'm using VS 2012 with Excel 2013, and the Ribbon area I create with an addin looks so plain vanilla ( font is not able to be in bold etc..) It would be great to extend the look and feel and ...
0
votes
1answer
48 views
VSTO 2013 excel range.address does not match range.cell[0] address
I am developing a VSTO plugin for Excel 2013 using the Office Development Tools for Visual Studio 2012 released in November 2012.
I have a reference to a worksheet and I am trying to access the value ...
1
vote
1answer
43 views
Inconsistent Outlook Addin Event Firing
On my development machine I have the FormInitializing and FormShowing events firing before RibbonLoad. I created a setup package in VS 2010 and installed on a vanilla Windows 7 Ultimate with Outlook ...
0
votes
1answer
50 views
AppointmentItem.UserProperties Lost on Recipients Not in Organizer's Domain
Outlook 2010
Setup:
Exchange Account #1 (Domain A)
Exchange Account #2 (Domain A)
Exchange Account #3 (Domain B)
Windows 8 Enterprise machine. I am logged into Domain A. I get ...
1
vote
1answer
83 views
Word Document.SelectionChange event does not fire
Below is my code (simplified version for readability) from a VSTO-based Word addin.
The problem is that if I have two documents open, such as documentation and a template, my addin helps develop the ...
1
vote
1answer
20 views
Accessing control events of email form
I am trying to develop an add-on for outlook which requires handling control changes.
For instance I need to do some stuff when email subject is changed. To do this, I need to access text change ...
1
vote
2answers
190 views
How to set custom properties in the currently active Word document via OpenXML
So far I've been able to set custom properties to a Word doc by using VSTO and by adding a package stream to the active document as it follows
public static void ...
0
votes
1answer
56 views
Is it possible to find the time an email was first modified/read in Outlook?
I am currently working on a very simple C# add-in for Outlook that will iterate specific folders and output specific details about messages to a CSV file. I have that part complete, however I was ...
0
votes
1answer
67 views
How to modify the AppointmentItem.Parent object
I need to set a UserProperty on a master of a recurring Appointment, from an appointment instance.
The scenario is:
a. user opens an instance of a recurring meeting/appointment.
b. my program sets a ...
1
vote
1answer
129 views
VSTO Merge to PDF
I have a VSTO Word addin that perform a mail merge, into a pdf, It must generate one pdf for each record each one of them with it's own name.
My code Works fine but it takes a lot of time generating ...
2
votes
1answer
158 views
Read 1GB size excel with 1.5 Records per sheet to Dataset
I am trying to import large excel files to database using .NET application in which I will do some customized cleansing and processing of data. The excel file will have sheets with 255 columns and ...
1
vote
0answers
54 views
Use Microsoft Office build-in resources for add-in localization
It is possible to use MS Offices build-in localization resources?
All the tutorials/guides I have found all explain how you create your own localization resources, but it seems like a lot of work for ...
0
votes
0answers
63 views
Reuse build-in MS Office forms
In PowerPoint and most Microsoft Office programs you see the form below when you change the language (spell check...).
I need a almost identical form with the exception of the "Dot not check ...
0
votes
1answer
134 views
How to get the ids of selected slides
I need the ids of the slides that the user has selected in the left pane.
In the image below it would be 1 and 3.
Is there a method I can use or do I need to loop through all slides and check some ...
-1
votes
4answers
1k views
Office Interop Does Not Work in Windows Service
I have a very weird issue with Microsoft Office.
I have a common library whose sole purpose is to open whatever word document file type is passed to it (by a full file path...) and save that opened ...
1
vote
1answer
183 views
Determine Office version in VSTO 4 before this.Application is set
I would like to determine the version of Office/Excel in a VSTO Addin when CreateRibbonExtensibilityObject() is called on the Addin. I have encountered an issue with this, and have encountered:
the ...
1
vote
1answer
82 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
357 views
Dynamically add and delete Data Validation in vb.net
I'm trying to add and delete Data Validation (as well as the inCellDropdown) to a Range of cells. It's working OK for the first time I run it. But I always get an error on subsequent executions.
The ...
0
votes
1answer
526 views
How to trap keypress event in MSword using VSTO?
I am new to VSTO VB.Net programming. and I am developing a word application level Addin and want to trap keypress event. I have tried various codes of hooking but none is working. I want to use ...
1
vote
1answer
318 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 ...
1
vote
1answer
201 views
Catch Outlook events when attaching/sending a file from another application
I'm trying to create an add-in for Outlook 2007/2010 to modify recipients of newly created email messages. Everything works fine if the user creates a new email message inside Outlook (I'm using the ...
0
votes
0answers
100 views
How to insert a text run with run properties in Word 2010 add-in?
I'm creating a MS Word 2010 add-in (C#) to insert a simple string into a Word 2003 XML. The code below is ran when a button is pushed; the string is inserted with a rPr (run property) using a custom ...
5
votes
1answer
332 views
How to raise an event on MS word Keypress
I am developing a MS-Word addon in which my code has to get access to the letters the user is entering through the keyboard.
private void ThisDocument_Startup(object sender, System.EventArgs e)
{
...
1
vote
1answer
446 views
Why dsofile.dll still need Office Installation?
I wrote a small piece of code using the dsofile.dll component to modify document properties after upload a file to a web server (to set a guid to link the file to a database record).
I took the ...
7
votes
1answer
361 views
passing integers to VSTO 2010 Word Addin
I am trying to develop a VSTO 2010 Word Addin. It has a custom task pane with a countdown timer (user control) in it. Idea is that when a word document is opened total time (in hours and minutes) is ...
2
votes
1answer
155 views
F# Excel UsedRange has no Properties or Methods
This is a continuation of the discussion begun on F# Excel UsedRange is not Defined, which has been solved by down-casting the ActiveSheet object to a Worksheet. Upon doing that, however, I was ...
1
vote
1answer
340 views
Capturing keydown event of MS Word using C#
I'm trying to develop an office add-on and need to capture the keydown event on MS-Word using C#. can somebody give me an example on how i can do that?
2
votes
1answer
443 views
Find the number of pages in a Word document Section using Interop
I'm trying to find the number of pages in a Section of a Word document using Interop in c#.
The main goal is really to find out if a header is visible or not. (E.g. a document is only 1 page, the ...
1
vote
1answer
211 views
Check excel 2010 bitness
Is it possible to get office 2010 bitness using getBinaryType() function which is defined in kernel32.dll something like this.
[DllImport("kernel32.dll")]
static extern bool GetBinaryType(string ...
1
vote
0answers
99 views
VSTO C#/VBA Word Spell Check Events
Is there a way to detect events Spell Check Start and Spell Check Completed within Word 2010?
Thanks!
0
votes
1answer
219 views
F# Excel UsedRange is not Defined
Error: "The field, constructor or member 'UsedRange' is not defined".
Code excerpts:
open Microsoft.Office.Interop.Excel
open Microsoft.Office.Tools.Excel // Onorio's excellent suggestion didn't ...
1
vote
3answers
419 views
How to access docx default style
I've been trying to get all the docx's document content and information about each run/paragraph. So far I've managed to get style information from run/paragraph properties.
using ...
1
vote
2answers
139 views
Can I control the Office message bar programatically
In Office, a yellow or red message bar is sometimes shown below the ribbon. It is usually red for security related messages, and yellow for information messages.
The screenshot below shows MS Access ...
1
vote
1answer
395 views
Accessing properties of Microsoft.Office.Interop.Outlook.MailItem
I am working on an Outlook add in application, and I am unable to properly access properties of the MailItem object.
For example, if I type an email address in the "To" box, the following code does ...
1
vote
1answer
687 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 ...
1
vote
1answer
122 views
Check field errors in word references with VSTO
How can I check if some fields in my word have errors? I have a large document that contains many references to other chapters or images. When those chapters or images are missing in the document, the ...
2
votes
0answers
438 views
VSTO- word taskpane share in multiple document with value issue
i am create a addin using VSTO with c#,
i have create a user control for task-pane, where i have following controls:
1) a text-box- for word document folder,
2) a button - for browsing throw ...
2
votes
1answer
260 views
New Outlook mail message doesn't load
I have the following simplified code:
using Outlook = Microsoft.Office.Interop.Outlook;
protected void SendEmailBtn_Click(object sender, EventArgs e)
{
Outlook.Application ...
1
vote
0answers
40 views
Pages in Printing
Is it possible to know which page I am printing in MS Word? Or which page has been printed recently? I am trying to find out using vsto. There are methods like Application.PrintOut()
and property ...
1
vote
1answer
105 views
Can't access a reference to a new mail window in Outlook 2010
I'm building my first plug-in to Outlook and according to the code here, I'm supposed to add the following code to the event handler.
new Microsoft.Office.Interop
...
0
votes
2answers
231 views
Need to store setting file on disk for Office Word 2007 Add-in (VSTO)
Im developing a simpel add-in for office and need a setting file, that is global for a machine.
What is the best place for it to be stored ?
I was think somewhere along the line of ...
1
vote
0answers
77 views
DowngradeDocument() function not doing proper downgrade?
I am trying to downgrade a document using VSTO.
I have a webservice, that receive a byte array. This byte is from the current active document.
The webservice can only handle a 2007/2003 word doc ...
0
votes
1answer
1k views
Enable ribbon controls in specific documents C# vsto 2010
I have an MS Office 2010 application level add-in, when it's loaded all ribbon controls in my custom tab are disabled.Then based on certain conditions I run this method to enable all the ribbon ...
0
votes
0answers
116 views
Office Interop and winform dialog sent back or freeze
I have developed an Addin using PowerPoint interop and we have an option to save the designed presentation to an external database via a webservice. when the user hits save button we show a custom ...
0
votes
0answers
68 views
VSTO Word Extensions Knowing About Each Other
I'm required to extend a Toolbar plugin for Word 2010 with a button that can detect documents using a companion C# Word 2010 document (template).
The scenario is: when I click a button in the toolbar ...
2
votes
1answer
133 views
VSTO Selecting and Modifying an existing Ordered List
I have an ordered list in my Word document, and I want to add a new element between elements 2 and 3. The easiest way to do this would probably be to get the location of the end of the second element, ...
1
vote
1answer
304 views
Adding content control throws an exception dynamically
I am fairly new to Word Addin development. Fortunately I was able to do almost everything but stuck at some simple issue I belive.
I want to insert plain text controls dynamically at the selected ...
2
votes
3answers
822 views
Powerpoint 2010 Multiple Instances
I have seen numerous posts on this subject here, but none seem to answer this issue directly. I want to control two instances of Powerpoint running on a second monitor.
The ideal solution looks like ...
1
vote
1answer
145 views
VSTO Add-in Works in Office SP3, but not SP2
I've developed an MS Project add-in (VS2010, targeting .Net 4) that works swimmingly well on machines that have Office SP3 installed (WinXP, 7). However, when installed on machines with Office SP2 ...




