2
votes
2answers
125 views

How To Select The First line or (first 20 Characters) of a pragraph using Microsoft Office Interop word.?

I have been trying the following code to get the first line or first 20 characters of a paragraph using Microsoft office interop word 12 Microsoft.Office.Interop.Word.Application w = new ...
1
vote
1answer
327 views

Max Rows Microsoft.Office.Interop.Word.Table

I am trying to generate a table and insert it into a Word document, as follows: object missing = System.Reflection.Missing.Value; var paragraph = miDoc.Paragraphs.Add(ref missing); ...
0
votes
5answers
537 views

Simplest way to read from Excel and Word Files in .NET

This is for self education really. But, is there an easier way to read from an excel sheet, without using the COM/INTEROP DLLs? Any other way Microsoft makes it easier to read values from an excel ...
2
votes
2answers
386 views

How to set the file name of a word document without saving it from c# and automation

I create word documents via automation and mailmerge with office Interop from c# (.net4). The merge works well and the user receives the created document as he desires. So far all is well. The client ...
2
votes
1answer
102 views

Linked image's SourceFullName differs from actual link

I have a weird case in a word automation program I'm developing using the Office Interop and C# 3.5 One task of the program is to copy any linked images in the word document to a different location ...
1
vote
1answer
116 views

How to update the Start and End positions of the specific Range after making changes to the document?

I am creating a MS Office Word Add-in in C#. I need to get some information from the Document while working with it. I take a certain Range of the document and save it. For example, in the text: ...
1
vote
1answer
2k views

How to add items one at a time to to a new line a word document using word interop

I am trying to add these three types of content into a word doc. This is how I am trying to do it now. However, each item replaces the last one. Adding images always adds to the beginning of the page. ...
1
vote
1answer
117 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 ...
1
vote
1answer
444 views

Displaying a Microsoft Office document in a WPF control

I am developing a WPF application that allows a user to browse the contents of a directory. What I want to be able to do is, if the user clicks on a Microsoft Word or Excel doc, have the file display ...
3
votes
1answer
286 views

How to set border of Shapes inside Word Document to None using c#?

i've created a label in a Word Document like this public void CreateLabel(string LabelName, int left, int top, int width, int height, string text) { var oRange = ...
0
votes
0answers
51 views

How to set Range in word document in C#-? [duplicate]

Possible Duplicate: Position cursor at start/end of Word document I need something like this: Range oRange =//left,top oRange.Document.Bookmarks.Add("bsmText", ref objMissing); actually ...
2
votes
1answer
534 views

Delete specific linebreaks with Word Interop

i have Problems to delete some specific Linebreaks with word interop. It seems that the indexes of doc.Content.Text does not match with the ones of word.. I need to delete all breaks which has no dot ...
0
votes
1answer
304 views

How to differentiate headings in a Microsoft Word file using Microsoft.Office.Interop.Word ?

I want to find all the headings in a word document which is of font size greater than the text below it, all the headings are of same font size else all the headings are bold while the text below it ...
1
vote
0answers
103 views

DocumentBeforeClose event does not work using JavaScript and wscript

I'm writing a script to manage Quit and Save events in Word 2010, some could help me with this piece of code? The event word_Quit is working correctly. However the event word_DocumentBeforeClose ...
1
vote
1answer
225 views

How to generate word document in windows server 2003?

I had written a function to generate a word document by using the Office Interop Word object. My code is as shown below. It is working fine in my local system. But when i try to run it from window ...
1
vote
2answers
424 views

Can you replace ^13 paragraph markers with ^p paragraph markers in MS Word using Interop?

I am wanting to replace all the substitue code for paragraph markers (^13) with the normal paragraph marker code ^p in a Microsft Word document, using C# and Interop. I am have been using the ...
0
votes
1answer
202 views

Selecting & editing 2nd Excel graph object in Word document with C#

I'm having an issue selecting & editing a 2nd Excel graph object in a Word document. I have a C# application, developed in Visual Studio 2010. Earlier I have the code: // Excel objects. ...
0
votes
5answers
784 views

Powershell script with Word interop, how to prevent the repair dialog to open?

I'm using a PowerShell script to batch convert Word document to Pdfs. The conversion part of the script is (if required I can paste the whole script): $word = New-Object -ComObject ...
2
votes
2answers
1k views

Read-Only merge fields in Word C#

I have a requirement to create read-only merge fields in Word. I've already tried using the Locked property which can be seen below.The description of this property states - When a field is locked ...
0
votes
1answer
74 views

C# Unknown Text Found

I'm creating a program to transfer text from a word document to a database. During some testing I came across some text inside a textbox after setting it's text to a table cell range as follows: ...
1
vote
0answers
650 views

Selecting content control in word

I am working on an addin to MS Word that will handle content controls Lets assume that we have 2 cases of selected content control in Word 2007 Case 1: Entire content of content control is ...
1
vote
2answers
389 views

Lock the word document and open Modal Dialog above the document

In a Windows Forms application I need to open a word document and hide the main form, and above the word document I need to open a Modal Dialog. When the modal dialog is shown, the word should be ...
5
votes
1answer
610 views

Word interop - how to close one Word window without closing all of them?

I'm using Microsoft Word Primary Interop Assemblies to slave MS Word. My application opens up its own Word window (using an instance of Microsoft.Office.Interop.Word.Application). After the app does ...
2
votes
1answer
1k views

ApplicationClass Documents.Open returns null for ASP.NET site on 64bit system

I have a problem with opening word document from ASP.NET site. The solution works fine on Windows 2003 Server, but doesn't work on Windows 2008 server x64 and Windows 7 x64. To simplify the solution ...
0
votes
1answer
484 views

C# and word interop with citrix leads to crash

I have an application at my hands that should copy a Word-file, open the copy, search/replace a number of values in the document and save it. Works fine using Office-Interop with either VB6 or C# . ...
0
votes
1answer
3k views

How : Adding Multi tables on Word with .net

I try to add multi tables within a word document using c# // Tables is a list of items which I want to present each in a table foreach (List<string[]> ClassTable in Tables) { ...
2
votes
1answer
2k views

How can I focus on a Word document I just opened through interop?

I am writing a simple Word Interop application which open a .doc file in background, changes bookmarks content, then make it visible to the user : var App = new ...
1
vote
1answer
539 views

How to add a sharpPDF into a Word document?

I'm working on an application in asp.net / C# 3.5 / Winforms. This application is rendering a PDF file and a Word file. We use Microsoft.Office.Interop.Word for word and sharpPDF for PDF. Our ...
1
vote
1answer
946 views

how to stop macros running when opening a Word document using OLE Interop?

As the title suggests, I have a .Net application which uses interop to open documents in Word. I have set app.AutomationSecurity = ...
1
vote
1answer
373 views

Which WdBreakType constants are universally safe to use in range.InsertBreak?

I am writing a C# WinForms program using the Word 2003 PIA which gives users the capability to insert different sorts of breaks. I am using the range.InsertBreak method which takes a WdBreakType ...
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 ...
3
votes
2answers
1k views

different format into one single line Interop.word

I've been trying to figure out how to insert 2 different formats into the same paragraph using interop.word in c# like this: hello planet earth here's what I want to do
1
vote
1answer
109 views

Invalid word list returned by Word

In an Word addin, I'm using this.Application.ActiveDocument.Words; to get a list of all the words in the curret document. Now when I parse this list, I found the ,, . and \r are also in this list. ...
2
votes
3answers
3k views

List fonts used by a Word Document (faster method)

I am working on process for validating documents to make sure that they meet corporate standards. One of the steps is to make sure that the Word document does not use non-approved fonts. I have the ...
0
votes
3answers
984 views

How do I get files that are attached to a word document?

I am using Microsoft.Office.Interop.Word to access Word documents through c#. Some of the Word documents have objects inside them. This is the equivalent of email attachments. To insert some file in ...
1
vote
1answer
701 views

Microsoft.Office.Interop.Word.FormFields.Item does not exist in VS 2010

I am upgrading a Windows application that was designed in Visual Studio 2005 and .Net 2 to Visual Studio 2010. One function of the application allows the end-user to open an existing MS Word document ...
0
votes
1answer
304 views

Word table style from c#

I have silverlight application that run out of browser. It opens some word template document and populate some fields. The problem is that in tpl document table is at top left corner. I want to change ...
1
vote
2answers
185 views

how to append .doc files to a template .doc file using c#

In my application i am creating many .doc files and i want to append it to make a single .doc file . how could i do this using C#
0
votes
3answers
5k views

how do we open a word file using vb script

could anyone plz tell me how to open word files using vbs windows scripting. I tried out these two set of vbs, but windows script Host error ("The system cannot find the file specified", errorcode: ...
2
votes
1answer
4k views

Merge Word Documents (Office Interop & .NET), Keeping Formatting

I'm having some difficulty merging multiple word documents together using Microsoft Office Interop Assemblies (Office 2007) and ASP.NET 3.5. I'm able to merge the documents, but some of my formatting ...