Join
Sign in
Search Options
Search Everything
Search Blog
Home
Blog
Resources
Forums
About Open XML
More ...
Home
»
Blog
»
OpenXML Developer
»
All Tags
»
.net - c#
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
.NET - VB.NET
C/C++ - C
C/C++ - C++
Java - Beans
Java - JSP
Tagged Content List
Blog Post:
All About PresentationBuilder, Part 3
bobm
The purpose of PresentationBuilder is to build a new Presentation document using selected slides from one or more existing Presentation documents. The challenge is to include all references to other parts, or parts of parts, as appropriate for the slides that are being copied. In this series of screen...
on
Mon, Jan 21 2013
Blog Post:
All About PresentationBuilder, Part 2
bobm
The purpose of PresentationBuilder is to build a new Presentation document using selected slides from one or more existing Presentation documents. The challenge is to include all references to other parts, or parts of parts, as appropriate for the slides that are being copied. In this series of screen...
on
Mon, Jan 21 2013
Blog Post:
All About PresentationBuilder, Part 1
bobm
The purpose of PresentationBuilder is to build a new Presentation document using selected slides from one or more existing Presentation documents. The challenge is to include all references to other parts, or parts of parts, as appropriate for the slides that are being copied. In this series of screen...
on
Mon, Jan 21 2013
Blog Post:
Quick Introduction to PresentationBuilder
bobm
This is a short (5 minute) introduction to the new PresentationBuilder. The purpose of PresentationBuilder is to build a new Presentation document using selected slides from one or more existing Presentation documents. The challenge is to include all references to other parts, or parts of parts, as appropriate...
on
Mon, Jan 14 2013
Blog Post:
Deleting Slides Using Open XML SDK 2.0
bobm
I usually like to use the Linq objects (XDpcument, XElement) when searching and modifying OpenXML documents. However, I know a lot of people prefer to use the specific objects available in version 2.0 of the SDK. For simple operations, this approach can work pretty well. I decided to try this approach...
on
Mon, Nov 26 2012
Blog Post:
Formula Processing in SpreadsheetML
bobm
For the last couple of months, I have been exploring the contents of formulas in SpreadsheetML. Formulas can include functions, cell ranges, external references, references to other sheets in the same workbook, and a variety of operators. In fact, formulas even support union and intersection operators...
on
Sun, Nov 4 2012
Blog Post:
Patch to Pivot Table Configuration Example
bobm
I have just updated the PowerTools Core (version 2.2.6) to fix a couple of problems with the spreadsheet and pivot examples. I have fixed twoproblems. There were some problems with the GetCellValue method. The other problem was with the pivot table configuration, which did not work when two or more data...
on
Fri, Oct 26 2012
Blog Post:
Creating Pivot Tables, Part 4
bobm
This will probably be the final installment of this series. In this example, I complete the pivot table creation process by configuring the fields that will appear in the rows, columns, filters and data values. This example builds upon the earlier examples. The screen-cast is divided into two sections;...
on
Sun, Apr 29 2012
Blog Post:
Quick Generation of Spreadsheet Data and Cell Styles
bobm
This example looks at a couple of OpenXML spreadsheet topics. I have been working with the cell styles a lot lately and this is a first example showing how to add some of the named styles to a spreadsheet cell. I plan to include even more style options in my next example and blog post. Also, after I...
on
Sun, Mar 25 2012
Blog Post:
Dates in strict SpreadsheetML files
jlundstocholm
A few weeks ago I made an article evolving around the intricate details of how to handle dates in SpreadsheetML . This is a follow-up on to that article. Introduction SpreadsheetML (and OpenXml as such) is divided in two chunks - "the Transitional chunk" and "the Strict chunk". In...
on
Thu, Mar 8 2012
Blog Post:
Dates in SpreadsheetML
jlundstocholm
One of the most overlooked parts of dealing with OpenXML and SpreadsheetML in particular is handling dates in a spreadsheet. You can find tons of tutorials and articles evolving around charts, pivot-tabled and formulas, but they tend not to include date handling in their examples. This article aims to...
on
Thu, Feb 16 2012
Blog Post:
Creating Pivot Tables, Part 1
bobm
This is my first post about creating pivot tables using the Open XML SDK. I am assuming you already know how to create a pivot table using Excel. The first approach I am going to show for creating pivot tables is simplified by using a spreadsheet with the pivot table already set up. The source for the...
on
Mon, Dec 5 2011
Blog Post:
Workaround for Bad Link Issue in OpenXML SDK
bobm
A number of people have reported a problem with the OpenXML SDK throwing an exception, "Invalid URI:The hostname could not be parsed." This exception is actually coming from the Uri class. Since the OpenXML SDK is using System.IO.Packaging to get relationships for the document and System.IO...
on
Mon, Nov 28 2011
Blog Post:
PowerTools Core 2.2 - Code and Examples
bobm
Eric and I have created a version of PowerTools that includes only the core code, without the cmdlet code. The C# project also includes several examples of how to use the core code from a C# program. You can get this project from the PowerTools CodePlex page ( http://powertools.codeplex.com/releases...
on
Wed, Nov 9 2011
Blog Post:
PowerTools 2.2 Code Design and Organization
bobm
Eric and I made a number of significant design and organizational changes to PowerTools. This video briefly goes through the technical details of those changes. It will be most useful for people familiar with C# development. It also helps if you know something about cmdlet development in PowerShell,...
on
Mon, Oct 31 2011
Blog Post:
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Continues
LizT
Three years ago Peter O'Kelly wrote a paper titled, "What?s Up, .DOC? Open XML Formats, OpenDocument Format, and the Revolutionary Implications of XML in Productivity Applications." This paper was an industry debate about the relative merits of Open XML Formats and OpenDocument Format and...
on
Thu, Sep 8 2011
Blog Post:
Open XML for PowerShell users : PowerTools for Open XML
neodante
Combining PowerShell and Open XML, PowerTools for Open XML is a powerful way to do server-side document processing. By using PowerTools in you own PS scripts you can manage and generate Word and Excel documents ! PowerTools is available for a while, thanks to Eric , Bob McClellan and people at Staff...
on
Mon, Jul 4 2011
Page 1 of 1 (17 items)