Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
691 views

Comparing Docx files using OOXML

How can I read word-by-word (with styles) from a docx file. I want to compare two docx files word-by-word and based on the differences I have to write into another docx file (using c# and OOXML). I ...
5
votes
1answer
2k views

Word 2007, Open XML - embedding an image

Do you know what basic information MUST include a paragraph (<w:p/>) in document.xml inside a *.docx document, that specifies an image? I do know there must be: <a:blip r:embed="rId4" ...
4
votes
1answer
250 views

Get a CheckBox in Word using OpenXML

How does one get a handle to a CheckBox control that's embedded in a Word document using OpenXML? You would think that either Paragraph.ControlPropertiesPart or Paragraph.Descendents() would achieve ...
4
votes
3answers
721 views

How can I query a Word docx in an ASP.NET app?

I would like to upload a Word 2007 or greater docx file to my web server and convert the table of contents to a simple xml structure. Doing this on the desktop with traditional VBA seems like it ...
3
votes
1answer
128 views

Convert outerXml to OpenXmlElement

I know how to convert an OpenXmlElement to outer xml by using the OpenXmlElement.OuterXml function but is it possible to do the opposite without knowing what kind of OpenXmlElement it's going to be? ...
3
votes
1answer
200 views

OpenXML: Anyway to see if a Word Document fits one page

While I doubt it, if I open up a word document using OpenXML sdk in C# and add some info, is there any way for me to see if it still fits one page? If it doesn't I wan't to reduce font size on ...
3
votes
3answers
2k views

Creating a Word document in Coldfusion - how to have pagenumbering?

I am creating a Word format .doc using the following code, then cfheader and cfcontent to serve. All is good but I need to be able to place dynamic information in the header (or footer), or automatic ...
3
votes
2answers
1k views

XPS to Word 2007

Is there a way to convert XPS to Word or RTF using VB.NET?
2
votes
2answers
107 views

Tag spot in word document

How can I tag a "spot" (this can be a text area or text field) in a word document? I tried putting a plain text content control in my document, but when I looked at the generated XML there was no ...
2
votes
1answer
517 views

Different types of hyperlinks in Word document

I'm writing a small app the takes a path as input and then fetches every docx file in that path, replacing every hyperlink with a keyword. The strange thing is that I found two sorts of hyperlinks, ...
2
votes
2answers
1k views

How to grab text from word (docx) document in C#?

I'm trying to get the plain text from a word document. Specifically, the xpath is giving me trouble. How do you select the tags? Here's the code I have. public static string TextDump(Package ...
1
vote
2answers
299 views

Line Breaks In CustomXMLPart

I'm updating a word document by rewriting the CustomXMLPart file. I've basically followed this tutorial: ...
1
vote
0answers
190 views

Image processing within open xml sdk and word processing

Does anyone know how to edit a picture with the Open XML SDK and Office2010 namespace? For example, resize or remove background, or smooth edges, crop or something like that... The only thing that ...
1
vote
2answers
159 views

How to search/replace text in WordprocessingML

In WordprocessingML (the format MS Word documents saves in), is there anyway to search through the text easily? The main problem I run into is that WordprocessingML format break down each paragraph ...
0
votes
0answers
31 views

cannot preserve space between runs

i want to generate a word document as an input i have this string "open packaging conventions" and each word will have a different style the result should be open packaging conventions ...
0
votes
0answers
22 views

How to Add a PDF into a docx file

I am using OpenXML Formats WordProcessingML java based API for manipulating a docx file. I am opening the docx file and searching for specific place holders and replacing them with contents at ...
0
votes
1answer
52 views

Hiding parts of OpenXml documents programmatically

Is it possible to programmatically hide parts of an OpenXML document, without actually removing it? The reason I would want to do this: This is a template file, dynamic parts are filled using ...
0
votes
0answers
74 views

Using open xml sdk code, how to resize a table (in ms word document) to fit into page margins?

Hi friends! I am using Microsoft Open XML SDK to generate a word document. I have used Open XML SDK 2.0 Productivity Tool for converting the word document into C# code, and thus I have created a ...
0
votes
1answer
46 views

Content Control Removal - Need solution

I need to work on document generation module of out application. I have gone through some of the links and blogs that helped me to go ahead and implement Content Control and Custom XML based document ...
0
votes
1answer
53 views

Copy text with bullets in OpenXml

I have the following problem: Text needs to be copied from 1 wordprocessing document to another wordprocessing document. The source document is not always accessible when inserting the text in the ...
0
votes
0answers
48 views

Can't apply formatting to text with WordML

I'm having trouble applying any formatting to text whatsoever using wordml in an XSLT file. I'm new to this, so I might have made a silly mistake here. Anyway, the text appears no problem when I apply ...
0
votes
1answer
136 views

Insert image from byte array into OpenXML CustomXmlBlock

I'm working with a template document that uses CustomXmlBlocks as placeholders to place tables and other information. I need to be able to place an image into one of these blocks somehow... even if it ...
0
votes
0answers
145 views

Openxml Add another different footer to an existing docx

I am trying to add a different footer after each altchunk is added. But my code changes all footers and on last page there are two footers. I am adding a section break prior to adding the new footer ...
0
votes
0answers
326 views

How to remove compatibility mode from openxml word docx?

When the DOCX is streamed to the browser the file title indicates it's in Compatibility Mode. I know the sample code was originally created for Word 2007. How do I get it to work for Word 2010? ...
0
votes
0answers
75 views

embeding .svg file in WordML generated by xsl

I am stuck with the following task: I am generating a WordML data via xsl. And it works perfectly. But the problem occurs when I want to insert a .svg file's filepath in it - it simply doesn't show ...
0
votes
1answer
130 views

Convert from HTML to WordprocessingML

I have a rich textbox that saves its data as HTML. Basically just paragraph tags and simple formatting. I need to stick this text (with formatting) into a document that I am creating in ...
0
votes
1answer
62 views

WordProcessingML shapes problem

I am currently working on exporting information from browser to word document. I am having information which contains colors and shapes. Now when I export them using wordprocessingML I am able to ...
0
votes
1answer
434 views

DOCX generation: POI OOXML trims spaces from string

I'm trying to generate a docx-document using poi-ooxml. The following code produces almost the document I want, but for some reason it removes end and start spaces from the text. XWPFDocument ...
0
votes
3answers
231 views

Writing MS Word 2007 XML

How would I write Word 2007 XML (WordProcessingML) on my own? I have a requirement to do so, where I need to write a Word 2007 XML format for a Word template. The important thing is I should convert a ...