Browse by Tags
All Tags »
Functional Programming (RSS)
[Blog Map] (Update Nov 4, 2009: This is the 3nd in a series of posts ( #1 , #2 , #3 , #4 , #5 ) on doing a transform of WordprocessingML to XHtml.) Over the last couple of weeks, and over the next week, I've been designing and writing some code to convert
Read More...
[Blog Map] (Update Nov 4, 2009: This is the 2nd in a series of posts ( #1 , #2 , #3 , #4 , #5 ) on doing a transform of WordprocessingML to XHtml.) Last week, I blogged about a small project that I'm embarking on: to make a reasonably accurate transform
Read More...
[Blog Map] (Update Nov 4, 2009: This is the 1st in a series of posts ( #1 , #2 , #3 , #4 , #5 ) on doing a transform of WordprocessingML to XHtml.) Over the next couple of weeks, I'm going to spend some time writing some LINQ to XML code to transform
Read More...
[Blog Map] There are some circumstances where I need a variation on the DescendantsAndSelf axis method that allows me to specify that specific elements (and the descendants of those elements) are ‘trimmed’ from the returned collection. One of the things
Read More...
Word 2007 has a feature where you can lock a document, preventing any changes to content, yet allowing the user to add comments. CommentMerger is a small method (~400 lines of code) that merges comments from two documents into a single document, provided
Read More...
Microsoft Word 2007 allows you to lock a document, prohibiting users from making changes to content, while allowing them to add comments. If we have multiple documents that have the same content yet different comments, we can merge those comments into
Read More...
[Blog Map] Writing pure functional transformations a in a recursive style enables us to put together interesting transformations in a very small amount of code. Using some specific techniques that allow us to write this code very concisely, this approach
Read More...
[Blog Map] When thought of in a certain way, XML documents come in two flavors – data-centric and document-centric. Further, there are two types of document-centric documents. This post presents my thoughts about approaches to various types of document-centric
Read More...
[BlogMap] (Note: this is a post on comparing two Open XML word processing documents. For a post on comparing two XML documents, see Equality Semantics of LINQ to XML Trees .) Sometimes we want to compare two word processing documents to see if they contain
Read More...
[Blog Map] (Update June 25, 2009 - fixed bugs in event handlers associated with deleting last node and inserting node at beginning of list) Occasionally I need to query LINQ to XML nodes in reverse document order. I’m currently writing some LINQ to XML
Read More...
Often XML schemas allow for optional elements and attributes. When you write queries on these elements or attributes, you may be tempted to write code that does lots of testing for null. There is a better way to do this, laid out in this post. I covered
Read More...
I’ll be presenting a talk on LINQ and Open XML at TechEd 2009. The session is “OFC403 Developing Office Client Solutions Using LINQ and Open XML”. I’ll be presenting on Thursday, 5/14, at 4:30PM in Room 411. Here is the abstract for the talk: In this
Read More...
DocumentBuilder is an example class that’s part of the PowerTools for Open XML project that enables you to assemble new documents from existing documents. One of the problems to solve when moving markup from one document to another is that of interrelated
Read More...
In my first version of my functional programming tutorial , I discussed a ForEach extension method, but I removed the topic from the second version. This extension method iterates through a source collection and performs an action on each item in the
Read More...
[Blog Map] In two previous posts , I developed a somewhat involved query to search through a word processing document for style names and/or paragraph content. This is a query that I’m developing for the PowerTools for Open XML project . In those posts,
Read More...