Retrieving the Default Style Name of an Open XML WordprocessingML Document
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThis is one in a series of posts on transforming Open XML WordprocessingML to XHtml. You can find the complete list of posts...
View ArticleListItemRetriever: Accurately Retrieving Text of a Open XML WordprocessingML...
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThis is one in a series of posts on transforming Open XML WordprocessingML to XHtml. You can find the complete list of posts here.When...
View ArticleTransforming WordprocessingML to Simpler XML for Easier Processing
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThis is one in a series of posts on transforming Open XML WordprocessingML to XHtml. You can find the complete list of posts here.When...
View ArticleValidate Open XML Documents using the Open XML SDK 2.0
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogOpen XML developers create new documents in a variety of ways – either through transforming from an existing document to a new one, or by...
View ArticleReducing Connaissance (Interconnectedness) and Increasing Robustness using LINQ
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThis is one in a series of posts on transforming Open XML WordprocessingML to XHtml. You can find the complete list of posts...
View ArticleFormats Supported for altChunk
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThe altChunk importing functionality of Word supports the following formats for the imported content:AlternativeFormatImportPartType...
View ArticleRelease of the Open XML SDK 2.0 for Microsoft Office
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogMicrosoft has released the RTM version ofOpen XML SDK 2.0 for Microsoft Office today. This is great news and another big step forward...
View ArticleDeveloping with SharePoint 2010 Word Automation Services
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThere are some tasks that are difficult using the Open XML SDK, such as repagination, conversion to other document formats such as PDF,...
View ArticleModifying an Open XML Document in a SharePoint Document Library
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogOn a fairly regular basis, I need to write an example that retrieves an Open XML document from a SharePoint document library, modify the...
View ArticleAssembling Documents on SharePoint 2010 Sites by Merging Content from Excel,...
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogZeyad Rajabi and Frank Rice have put together a cool article, Assembling Documents on SharePoint 2010 Sites by Merging Content from...
View ArticleTesting for Base Styles in Open XML WordprocessingML Documents
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogSometimes you want to process all paragraphs in a document, and filter based on the style name. However, sometimes it isn’t good enough...
View ArticleSharePoint 2010 and Office 2010 Videos from the SharePoint Conference 2009
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogWe’ve published ten of the most popular videos from the SharePoint Conference.SharePoint 2010 VideosOverview of the SharePoint 2010...
View ArticleUsing Content Controls to give Semantic Meaning to Content in Open XML...
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogA wide variety of business applications can take advantage of content controls to give semantic meaning to content in Open XML...
View ArticleDetermining if an Open XML WordprocessingML Document contains Tracked Changes
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogProcessing tracked changes (sometimes known as tracked revisions) is something important that you should full understand when writing...
View ArticleUsing the Open XML SDK from within a Managed Add-In
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogWhen you are writing code for an Office managed add-in, you can use the Open XML SDK to manipulate the current document in a whole...
View ArticleOpen XML Package Editor Power Tool for Visual Studio 2010
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogThe VSTO team today announced the release of the new Open XML Package Editor for Visual Studio 2010! This is an indispensible tool in...
View ArticleWriting a Recursive Descent Parser using C# and LINQ
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogRecursive descent parsers are one of the easier types of parsers to implement. Given a properly defined grammar, you write a class for...
View ArticleProcessing all Content Parts in an Open XML WordprocessingML Document
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogIn Open XML WordprocessingML documents, there are five types of parts that can contain content such as paragraphs (with or without...
View ArticleRecursive Descent Parser using LINQ: The Augmented Backus-Naur Form Grammar
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogA grammar is a device to define syntax for a language. A grammar is made up of rules, sometimes called productions. Each rule defines a...
View ArticleRecursive Descent Parser: A Simple Grammar
[Blog Map] This blog is inactive. New blog: EricWhite.com/blogTo learn how recursive descent parsers work, it is helpful to implement a very simple grammar, so for pedagogical purposes, I’ve defined...
View Article