Join
Sign in
Search Options
Search Everything
Search Blog
Home
Blog
Resources
Forums
About Open XML
More ...
Home
»
Blog
»
OpenXML Developer
»
All Tags
»
powertools
Browse by Tags
Blog
Samples, Demos, and Reference Articles
Get this RSS feed
Archives
Archives
May 2013
(3)
April 2013
(3)
March 2013
(2)
February 2013
(8)
January 2013
(11)
December 2012
(4)
November 2012
(10)
October 2012
(7)
September 2012
(1)
August 2012
(3)
July 2012
(2)
June 2012
(4)
May 2012
(3)
April 2012
(6)
March 2012
(6)
February 2012
(8)
January 2012
(4)
December 2011
(6)
November 2011
(9)
October 2011
(8)
September 2011
(5)
August 2011
(9)
July 2011
(5)
June 2011
(7)
May 2011
(6)
April 2011
(7)
March 2011
(3)
January 2011
(2)
October 2010
(2)
August 2010
(1)
May 2010
(1)
April 2010
(3)
March 2010
(6)
February 2010
(3)
December 2009
(4)
November 2009
(4)
September 2009
(7)
August 2009
(2)
July 2009
(3)
June 2009
(7)
May 2009
(6)
April 2009
(7)
March 2009
(8)
February 2009
(3)
September 2008
(1)
June 2008
(3)
May 2008
(2)
April 2008
(2)
March 2008
(2)
February 2008
(2)
January 2008
(5)
December 2007
(3)
November 2007
(3)
October 2007
(2)
September 2007
(2)
August 2007
(6)
July 2007
(3)
June 2007
(4)
May 2007
(4)
April 2007
(2)
March 2007
(6)
February 2007
(2)
January 2007
(5)
December 2006
(5)
November 2006
(12)
October 2006
(5)
September 2006
(3)
August 2006
(11)
July 2006
(5)
June 2006
(5)
May 2006
(6)
April 2006
(7)
March 2006
(17)
Tags
DocumentBuilder
OpenXML
OpenXML WordprocessingML
WordProcessingML
WordprocessingML PowerTools
Tagged Content List
Blog Post:
Displaying an Open XML WordprocessingML Document in a Web Browser Control in Windows Forms
Eric White
This is a fun little project that I needed to do to help out a customer. The customer needed to select a specific subset of paragraphs in a WordprocessingML document based on certain search criteria, and then display the subset in a form (in a Windows Forms application). As it turns out, it was pretty...
on
Fri, Dec 9 2011
Blog Post:
New screen-cast on the Split-OpenXmlDocument cmdlet in PowerTools for Open XML
Eric White
In document processing parlance, shredding a document is the process of dividing a source document according to certain rules, and creating a number of documents from the source document. This is useful, for instance, when you have a huge document, and you want to divide it into multiple documents to...
on
Mon, Nov 7 2011
Blog Post:
Merge Comments from Multiple OpenXML WordprocessingML Documents into a Single Document
Eric White
Several years ago, I was at a Microsoft conference, and was asked by a couple of attendees how to merge comments from multiple Open XML WordprocessingML documents into a single document. Those developers had attempted to write code to do this, and were not successful. I took this as a challenge, and...
on
Thu, Nov 3 2011
Blog Post:
Getting Started with Open XML Development - Part II Tools
Eric White
This post introduces the second screen-cast in this series on getting started with Open XML development. In this screen-cast, I introduce the three most important tools that you will want to be familiar with: Return to the Table of Contents of this screen-cast series. Open XML Package Editor Power Tool...
on
Mon, Oct 24 2011
Blog Post:
Announcing the Release of PowerTools for Open XML 2.2
Eric White
We’re very happy to announce the release of PowerTools for Open XML version 2.2, now available for download at powertools.codeplex.com . There are a number of great features in this new release: Merge-OpenXmlDocument incorporates DocumentBuilder 2.0, which is a much more robust implementation of...
on
Tue, Oct 11 2011
Blog Post:
Replacing Text of a Bookmark in an OpenXML WordprocessingML Document
Eric White
In a previous screen-cast , I showed how to retrieve the text of an OpenXML WordprocessingML document. In this post and screen-cast, I introduce some code that enables you to replace the text of a bookmark. This blog post and screen-cast build on the previous screen-cast. In that screen-cast, I used...
on
Tue, Sep 6 2011
Blog Post:
How to Retrieve the Text of a Bookmark from an OpenXML WordprocessingML Document
Eric White
Sometimes developers use bookmarks to delineate text in an OpenXML WordprocessingML document. Then, as part of a larger system, they want to retrieve the text of that bookmark to process in some fashion. Retrieving the text of bookmarks is made somewhat more complicated because the w:bookmarkStart and...
on
Thu, Sep 1 2011
Blog Post:
Exploring Tables-of-Contents in OpenXML WordprocessingML Documents (Part 4)
Eric White
Here is the last of four screen-casts on tables-of-contents in OpenXML WordprocessingML documents. In this screen-cast, I show how to use Word Automation Services to repaginate a document and update the TOC. Here is the complete list of screen-casts in this series. Link Summary Screen-cast #1 Explains...
on
Mon, Aug 22 2011
Blog Post:
New Screen-Cast: Short and Sweet Intro to DocumentBuilder 2.0
Eric White
Here is a short screen-cast that explains what DocumentBuilder 2.0 is all about, in less than seven minutes.
on
Wed, Aug 17 2011
Blog Post:
Exploring Tables-of-Contents in Open XML WordprocessingML Documents
Eric White
Many Open XML developers need to generate documents, and then generate and insert an updated table-of-content for the document. TOC's in Open XML are not hard, but they require a bit of explanation. This blog post introduces the first of several screen-casts around Open XML WordprocessingML TOCs...
on
Mon, Aug 8 2011
Blog Post:
Introducing TextReplacer: A New Class for PowerTools for Open XML
Eric White
Recently I wrote some code that implemented search-and-replace for Open XML WordprocessingML documents . I wrote that code for an Open XML developer who needed to implement that functionality using XML DOM, although with a different language than C#. Because XML DOM is standardized, translating the code...
on
Thu, Aug 4 2011
Blog Post:
Introduction to DocumentBuilder 2.0 - Screen-Cast 3 of 3
Eric White
This post is the third in a series of three screen-casts that introduce DocumentBuilder 2.0. This screen-cast builds on the previous two screen-casts where I walk through the process of transferring comments from multiple source documents into a destination document. In this final screen-cast in the...
on
Thu, Jul 14 2011
Blog Post:
Introduction to DocumentBuilder 2.0 - Screen-Cast 2 of 3
Eric White
This post is the second in a series of three screen-casts that introduce DocumentBuilder 2.0. This screen-cast builds on the previous screen-cast where I walk through the process of transferring comments from multiple source documents into a destination document. In this screen-cast, I insert images...
on
Tue, Jul 12 2011
Blog Post:
New Version of DocumentBuilder Available in PowerTools
Eric White
At long last, I have completed and posted a much requested and sorely needed update to DocumentBuilder . DocumentBuilder is code that is part of the PowerTools for Open XML project that handles issues of interrelated markup, enabling you to generate new documents from existing documents in a variety...
on
Mon, Jun 20 2011
Page 1 of 1 (14 items)