Office Interop is the layer using the COM Interop that allows .NET or C# to communicate with standard COM objects and libraries.
0
votes
1answer
9 views
vb.net save in word2010
Platform: Windows and Microsoft Visual Basic 2010 Express
The problem: I have a Word template made in Word 2007. When the application is
run in a machine with Word 2010, the SaveAs-command doesn't ...
0
votes
1answer
13 views
Office 2010 PIA not being installed
I am writing an application in VB.NET that will send emails using outlook. My problem is that I need the Office 2010 PIA to do this. The following are the steps I have already tried (I am using Visual ...
0
votes
2answers
28 views
Fastest way to enumerate or look for all empty Excel cells and change their style or do some other processing
Which would be potentially a best way to enumerate or iterate or simply look for empty cells or cells with specific data structure in Excel, and later once you find it do some processing on it.
I ...
0
votes
1answer
15 views
How to automate an Excel document and work on other excel document at the same time?
I'm using a program to automate an excel document and in the meantime I would like to open others Excel documents and work on these (not automated).
When I open an document while my automation is ...
0
votes
1answer
18 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 ...
1
vote
4answers
3k views
Delete Empty Rows with Excel Interop
I have user supplied excel files that need to be converted to PDF. Using excel interop, I can do this fine with .ExportAsFixedFormat(). My problem comes up when a workbook has millions of rows. This ...
0
votes
1answer
64 views
Return type of Application.Evaluate in exotic cases
I am trying to write a method in C# that will, given the name of a named range in an Excel workbook, retrieve the values in that range. I'd like it to work even if the named range isn't a pure ...
0
votes
0answers
7 views
Using CTPFactory and CTPFactoryAvailable methods (visual basic) to interact with the ribbon UI
I am using NetOffice and Visual Studio 2010 Express to develop word COM addins.
Very simple I want to show a custom task pane (CTP) when a check box is ticked in the ribbon UI.
NetOffice cannot ...
0
votes
0answers
26 views
Pasting into a Word Bookmark without deleting the bookmark
I've got a Microsoft Word project in Visual Studio and have some code that opens a seperate document and copies the text into the clipboard, then I'm just trying to paste that text into a bookmark in ...
0
votes
1answer
246 views
can't find Microsoft.Office.Interop assemblies in VS2012
I can't find Microsoft.Office.Interop assemblies in VS2012. I download assemblies from here, but after installing I don't find assemblies. Then I try install Interop assemblies for Office 2007, but I ...
5
votes
3answers
154 views
Color non-consecutive cells in an Excel sheet
UPDATE 2: I still want to be able to make a range object with non-consecutive ranges and even though my colleagues have given up on it I personaly hate not finishing projects. If anyone can tell me ...
3
votes
4answers
3k views
C# Outlook 2007 COM interop application does not exit!
Any ideas why the following code does not exit the Outlook 2007 process created via COM interop?
Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application();
...
0
votes
0answers
12 views
Replace all the images in powerpoint slides using VIsual Studio tools for office
I want to replace all the images, whether it is of msoPicture, or it is contained in the msogroup, or it is inserted as embededOleObject.
I have the following code to replace msoPicture:
if ...
1
vote
2answers
3k views
Is there an easy way to copy a word doc. into another using C#?
How can I copy contents of one word document and insert it in another pre-existing word document using C#. I've had a look around but everything looks really complicated (I'm a newbie). Surely there ...
5
votes
2answers
1k views
Copy text from word file to a new word
I am reading the text from word file and replace some text from the readed text.
var wordApp = new Microsoft.Office.Interop.Word.Application();
object file = path;
object nullobj = ...
0
votes
1answer
62 views
Microsoft.Office.Interop.Word.Document won't prompt to save changes to single document without _Application.Quit()
Before I begin, I have googled this to death and there are many posts about how to prevent the save prompt. I am having an issue showing the save prompt.
I am building the template editing portion of ...
0
votes
1answer
3k views
Visual Studio 2010 Excel Workbook Project
Here's the deal:
I create project "data" that contains a class with four random properties.
I created an excel workbook project and databound a worksheet to the class in the data project
I created a ...
1
vote
0answers
324 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 ...
0
votes
1answer
50 views
How to reply to an Outlook mailitem using .net
I am writing an Outlook 2007 Add-in which composes a business quote in response to an email query. I compose the quote using Windows forms. Everything works fine until I get to the point of replying ...
0
votes
1answer
21 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 ...
0
votes
1answer
27 views
Writing to Excel cells while releasing all COM objects
I am following this posts advice and trying to release all of my COM objects, including all Ranges while writing a List of string tuples to an Excel spreadsheet (using his ComObjectManager class).
I ...
0
votes
2answers
277 views
Fill in word form field with more than 255 characters
I am trying to programmaticly fill in a microsoft word form.
I am successfully able to do so if the string is under 255 chars with the following code below, however it says the string is too long if ...
0
votes
1answer
39 views
Automating Word Document Processing with ASP.Net
I am trying to create a process, in my Asp.net application, that will open up a Microsoft Word template (stored on the server) and edit specific fields in the document then download the file to the ...
0
votes
0answers
14 views
Search Text in paragraph && Add Hyper-link
I have a Paragraph variable located in ms-word document which have the following Text :
DI : Note de délégation du pouvoir, Note de crédit, Tarifs, notes «Modalité de paiement », Grille des ...
0
votes
1answer
20 views
Change the status of mail as Read in outlook
i have written a code that will read all unread mails from Outlook 2010 and write them in a file. After that i want to change the status of the mails as Read in outlook.
How do i do it?
I am using ...
0
votes
1answer
34 views
Add text to word table in c# using word interop
I am using Word.Interop in c# to inject data into a word document whch serves as a template for me.
This document has a table I wish to fill.
like this:
I am inserting the text like this ...
6
votes
4answers
2k views
How can I quickly up-cast object[,] into double[,]?
I using Microsoft.Office.Interop.Excel I get returned a 2D array of type object[,] which contains double for elements. Note that the index lower bound is 1 instead of the default 0, but I can deal ...
0
votes
0answers
19 views
Alternative to powerpoint shape.Export method
I want to export shapes from ppt to images. I'm using PowerPoint api's shape.Export method.
like :
curShape.Export(path + imageName,JPG_Or_PNG, (int)this.myPPTProcessor.SlideWidth, ...
0
votes
0answers
6 views
Office .NET COM add-in create child window
There is plenty of documentation of how to create an application-level add-in for Microsoft Office using .NET and COM interop. Using that technique it's easy to create and display forms either using ...
1
vote
0answers
54 views
Print only on recto (one paper side) with Word.interop
I'm trying to print a document, only on recto, and not recto-verso.
So, I print my document with Word.Interop and before open document, set default printer parameters like this :
...
0
votes
0answers
28 views
Interop.Word.Document.Words border changes very slow
Hi!
I'm working on a MS Word addin that marks certain words in a given text. Unfortunately, this operation is very slow. In a document of 50 pages (~26'000 words) changing the border style for about ...
10
votes
7answers
15k views
What reference do I need to use Microsoft.Office.Interop.Excel in .NET?
I am interested in using C# to manipulate/Automate Excel files.
After browsing the web I have found VSTO but it seems you can not use that in Visual Studio Express Edition so I can not use that.
...
2
votes
3answers
186 views
Converting html strings in Excel file to formatted word file with .NET
Input are Excel files - the cells may contain some basic HTML formatting like <b>, <br>, <h2>.
I want to read the strings and insert the text as formatted text into word documents, ...
0
votes
0answers
51 views
C# Cant read VBA Macros from Excel. (Line count 0)
I am trying to get the VBA Macros from an Excel File.
The file does not have password, and the vb project does not seem to be password protected
because I am opening it without setting the current ...
0
votes
4answers
10k views
Excel interop: saving workbook without showing save dialog
I have to create a console application that exports a dataset to Excel. I've tried googling and looking at posts on this topic but haven't really found what I'm looking for. The problem is that it ...
0
votes
2answers
77 views
excel interops OK with Excel 2003 with 'Office 2007 Compatability Pack'?
I'm maintaining a web-app which currently references Interop.Excel.dll (v 1.5.0.0).
The Interop.Excel.dll been used to access .xls files under Excel 2003 and then, subsequently, .xlsx/m files under ...
8
votes
3answers
11k views
How to open Outlook new mail window c#
I'm looking a way to open New mail, Outlook window.
I need programically fill: from, to, subject, body information, but leave this new mail window open so user can verify content / add something ...
0
votes
4answers
1k views
Which is the faster way to read an Excel file into a .NET application : ADO.net or Microsoft.Office.Interop.Excel.Application?
I'm reading in a very large Excel file into a VB.net application. The user specifies the file from a file picker at runtime. I'm currently using the Microsoft.Office.Interop.Excel.Application ...
0
votes
1answer
97 views
Get Unique Id From MailItem (Microsoft.Office.Interop.Outlook)?
Hi I'm creating an application that reading emails received in outlook. The reading process is something like this:
In Using Lines:
using Outlook = Microsoft.Office.Interop.Outlook;
Code block:
...
0
votes
0answers
20 views
Is it necessary to loop through all the document sections to add a watermark?
I'm wondering if it's necessary to loop through all of a word documents sections to add the watermark. I've noticed that in one of my documents that contains 23 sections, as soon as I add a watermark ...
1
vote
2answers
54 views
Word automation server-side not working
PREFACE: Yes, I know that Microsoft does not recommend this. However, this server is internal-facing in a heavily restricted VLAN.
The goal is to automatically generate specific types of reports ...
1
vote
1answer
58 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 ...
0
votes
1answer
169 views
Word OpenXML wp14:anchorId attribute causing Textbox alignement bug
So. Here is a hard question:
I developed a Word Plugin for Word 2007, and then upgraded it to Word 2010. It was stable in 2007, but, after the upgraded one important function stopped to work, so I ...
0
votes
3answers
112 views
Fast access to excel data in X++
Can someone give me a clue how can I get the fast access of the excel data. Currently the excel contains more than 200K records and when I retrieve from the X++ code it takes a lot of time to retrieve ...
1
vote
1answer
212 views
MS Word Interop to C# - Inserting multiple files at a bookmark
I have one master document into which I want to insert a number of files. These should be inserted into the file one after another at a certain point in the middle of the document.
So I have created ...
2
votes
2answers
541 views
Convert Word document .doc and .docx to RTF formate
I have a requirement for an application that takes Doc, Docx content (means whole document) and converts them to RTF content.
Has anyone done this and can you recommend a libray? I know there is ...
0
votes
1answer
39 views
Excel Interop, iterating workbook for worksheet and chart
I have a scenario while working with Microsoft Excel Interop.
System.Collections.IEnumerator wsEnumerator = excelApp.ActiveWorkbook.Worksheets.GetEnumerator();
while (wsEnumerator.MoveNext())
{
...
2
votes
1answer
191 views
How to save read only ppt to pdf?
when i tried to save a read- only ppt/pptx to a pdf i got a msg as shown below
below is my code:
Microsoft.Office.Interop.PowerPoint.Application pptApplication = new ...
-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
33 views
Extract text information from MS Word
i want to extract text information from MS Word document. The extracted information contain position, page number and style of text. Does anyone can suggest me How can i do That? what library can ...









