1
vote
1answer
47 views

How to use and apply HMerge on a cell in generating a docx file using java and docx4j?

I have found tutorials on how to make a simple table in generating a docx file using docx4j. and have seen a sample on how to merge cells vertically. It worked. but i have tried the same using ...
5
votes
1answer
96 views

How to apply a character style to a run in a wordprocessing document?

When I create a paragraph style with openxml sdk 2 in c# and apply it to a paragraph every thing will be correct and it will run without any problem. But with the codes below, when I create a ...
0
votes
0answers
143 views

C# Automated Word Utility - Upgrade from WordProcessingML/XSLT to OpenXML

I have a .Net application that was developed for Word 2003 which uses a XSL style sheet to translate an XML file to a word document report. The report comprises of text, images, tables and tables of ...
0
votes
1answer
206 views

Prevent Word 2010 from saving o:gfxdata base64 or uuencoded VML?

I am working with .docx files containing several drawing canvases with images inserted and some lines and arrows drawn in Word 2010. I am using 2010 format with no compatibility mode. Word inserts ...
0
votes
1answer
78 views

WordProcessingML. How do I assign background color to text?

I have code that creates document with several paragraphs with different text-color for some words. Something like: using (var doc = WordprocessingDocument.Create("some-file-name", ...
0
votes
0answers
90 views

Retrieve a CustomXML Part in WordprocessingML after MS Word has changed the Relationship Id

When I use the OpenXML SDK to add a CustomXML Part to a Word document with a custom Relationship-Id, a open->change->save cycle in Word changes this Id. Code to add the Custom XML part: ...
0
votes
1answer
36 views

WordML language auto detedt

I'm creating a wordml document, that is typically not in english. Word marks all words as mis-spelled. I know about the <w:lang> tag, but the trouble is that i don't know the language while ...
0
votes
1answer
793 views

Java docx4j Bold Text

I do a search and replace on a word document by using docx4j and the following code: WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new File(pathFinder.findUploadPath() + ...
0
votes
1answer
291 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 ...
2
votes
2answers
598 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 ...
4
votes
3answers
4k 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 ...
0
votes
3answers
347 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 ...