Open XML is an open ECMA 376 standard and is also approved as the ISO/IEC 29500 standard that defines a set of XML schemas for representing spreadsheets, charts, presentations, and word processing documents. Microsoft Office Word 2007, Excel 2007, and PowerPoint 2007 all use Open XML as the default ...
7
votes
1answer
883 views
Excel and “unreadable content” when creating an Open XML spreadsheet with MemoryStream
When creating an Excel spreadsheet using the Open XML SDK v2.0, our Excel output initially worked successfully for a number of months. Recently Excel (all versions) began to complain about "Excel ...
6
votes
3answers
654 views
openxml spreadsheat save-as
I have an Excel 2007 spreadsheet that I edit with the OpenXML SDK 2.
I remove some rows etc.
I would like to know how to save that Spreadsheetdocument to another filename.
6
votes
3answers
334 views
Automated Testing OpenXML SDK
I'm implementing ms word document generation using content controls and OpenXML SDK. I'd like to have some automated testing for that code (unit tests or some easy UI automation tests).
Does anyone ...
6
votes
3answers
5k views
From Excel to DataTable in C# with Open XML
I'm using Visual Studio 2008 and I need create a DataTable from a Excel Sheet using the Open XML SDK 2.0. I need to create it with the DataTable columns with the first row of the sheet and complete it ...
6
votes
2answers
691 views
Comparing Docx files using OOXML
How can I read word-by-word (with styles) from a docx file. I want to compare two docx files word-by-word and based on the differences I have to write into another docx file (using c# and OOXML).
I ...
6
votes
4answers
3k views
OpenXML SDK Spreadsheet starter kits
I am trying to start working with excel documents through the OpenXML SDK Spreadsheet API.
But I havent found any good guides or even examples on how to create a xlsx file from scratch. Only how to ...
5
votes
1answer
176 views
Stream into package, package into WordDocument and then back again
I do not understand all the mechanics surrounding Streams and even less around the System.IO.Package class.
I have a .docx document as a binary in a DataBase and I wan't to fetch it, modify somewhat ...
5
votes
1answer
709 views
WordML templating with XML Schema and OpenXML SDK
I'm trying to use a docx read in via the OpenXML SDK as template in a .Net web app for form letters (essentially). I have a docx with the formatting I want, marked up with XML Schema tags defined from ...
5
votes
1answer
293 views
Is there functionality that is NOT exposed in the OpenXML SDK v2?
I want to know if there is anything that you cannot do with SDK that was exposed in the COM interface?
5
votes
1answer
2k views
C# Open Xml SDK 2.0 Spreadsheet Setting Cell DateTime Format
I'm having trouble finding this one.
my situation:
SDK 2.0
no template spreadsheet
C# 4.0 in VS2010
my problem:
Certain data in the excel files I want to build exists in DateTime format. As I ...
5
votes
5answers
5k views
Replace bookmark text in Word file using Open XML SDK
I assume v2.0 is better... they have some nice "how to:..." examples but bookmarks don't seem to act as obviously as say a Table... a bookmark is defined by two XML elements BookmarkStart & ...
5
votes
1answer
577 views
Open XML SDK v2.0 Performance issue when deleting a first row in 20,000+ rows Excel file
Do anyone come across a performance issue when deleting a first row in a 20,000+ rows Excel file using OpenXML SDK v2.0?
I am using the delete row coding suggested in the Open XML SDK document. It ...
4
votes
3answers
3k views
open xml excel read cell value
I am using the Open XML SDK to open an Excel xlsx file and I try to read the cellvalue on position A1 in each sheet.
I use the following code:
using (SpreadsheetDocument spreadsheetDocument = ...
4
votes
2answers
3k views
What indicates an Office Open XML Cell contains a Date/Time value?
I'm reading an .xlsx file using the Office Open XML SDK and am confused about reading Date/Time values. One of my spreadsheets has this markup (generated by Excel 2010)
<x:row r="2" spans="1:22" ...
4
votes
3answers
483 views
How to split a document in OpenXML SDK
I need to split a document in OpenXml sdk 2.0. The document has sections that each have a footer with a text element (name of the section). Is there a straightforward way to copy from one OpenXml ...
4
votes
1answer
282 views
Using TDD with OpenXml-SDK
I have started using a TDD approach to develop a small app that reads data from Excel files. Using a repository pattern type approach I have come to a hurdle which baffles me.
In order to read the ...
4
votes
2answers
1k views
Open XML SDK - Save a template file (.xltx to .xlsx)
I have the following code to open Excel template file and save it as .xlsx file and I get the error below when I try to open the new file. Please help to resolve this.
Excel cannot open the file ...
4
votes
1answer
597 views
Using Excel sheet as a template vs. a “real” Excel template in OpenXML
Does anyone have any good answer what kind of difference there is between
using some arbitrary pre-formatted Excel 2007 *.xlsx file as a template, loading it in my C# app, and filling up some of ...
4
votes
2answers
2k views
How to create a Word document from a Silverlight 4 application?
I'm looking for some options to programmatically create a Word document from within a Silverlight 4 application. I found two approaches which seemed promising at first but don't look like they will ...
4
votes
0answers
432 views
Use SSIS to populate Excel workbook generated using OOXML
We are trying to generate MS Excel workbook using OOXML and populate data using SSIS.
We are able to generate Workbook and sheets, also able to create columns and insert data in the Header cell. We ...
4
votes
2answers
627 views
XLSX- how to get rid of the default namespace prefix x:?
I'm generating XLSX spreadsheet using OOXML SDK, and I need to get rid of x: namespace prefix. How can I achieve this?
using (SpreadsheetDocument doc = SpreadsheetDocument.Open("template.xlsx", ...
3
votes
1answer
113 views
How to get cell value with applied formatting (formatted cell value) with OpenXML SDK
I've been googling and searching on the site for the answer, but I couldn't find a solution - everywhere people mostly discuss how to add new number format to the document and apply it.
What I need ...
3
votes
1answer
113 views
OpenXml: What is the difference between SdtBlock and SdtCell?
SdtCell and SdtBlock in OpenXml.Wordprocessing both serialize into <w:sdt> so what is the difference? I assume one is a table cell, which is what the Microsoft documentation appears to imply. ...
3
votes
1answer
220 views
How can I retrieve images from a .pptx file using MS Open XML SDK?
I started experimenting with Open XML SDK 2.0 for Microsoft Office.
I'm currently able to do certain things such as retrieve all texts in each slide, and get the size of the presentation. For ...
3
votes
1answer
200 views
OpenXML: Anyway to see if a Word Document fits one page
While I doubt it, if I open up a word document using OpenXML sdk in C# and add some info, is there any way for me to see if it still fits one page?
If it doesn't I wan't to reduce font size on ...
3
votes
1answer
217 views
Why does my custom XML not carry over to a new version of a DOCX file when Word saves it?
I'm adding in some custom XML to a docx for tracking it inside an application I'm writing.
I've manually done it via opening the Word Document via a ZIP library, and via the official Open XML SDK ...
3
votes
3answers
475 views
OpenXML SDK 2.0 vs Aspose for server side word 2007 document generation in .NET
I am going to start a Server side Office automation project in .Net. Below are the key activities that are planned:
Create a word document
Use a existing word document template having cover page, ...
3
votes
1answer
532 views
new lines, default font and size (open xml sdk)
What I need is to insert a new line at the end of a text.
I try with run.Append(**new Break()**);
but this simulates to pressing (Shift+Enter) keys, and if I want a justified text the latest line ...
3
votes
3answers
403 views
How can an OpenOffice document be created in C++ [closed]
Possible Duplicate:
Creating, opening and printing a word file from C++
Hi,
I need to create a word document from a c++ program,
Im using windows 2008 server,office automation fails ...
3
votes
1answer
248 views
How to keep current style in when inserting via OpenXML SDK?
I have a docx document that I want to modify via OpenXML SDK. This document has a table with bookmarks in its cells. The cells have specific font settings, let's say it's Times New Roman, 14pt. When I ...
3
votes
1answer
165 views
Resources for learning about Word XML format?
What resources would you recommend to learn about the Microsoft's Open Office format (the XML format introduced with Office 2007, not to be confused with OpenOffice.org), specifically for .docx Word ...
3
votes
1answer
2k views
OpenXML sdk Modify a sheet in my Excel document
I create an empty template in excel.
I would like to open the template and edit the document but I do not know how to change the existing sheet.
That's the code:
using (SpreadsheetDocument xl = ...
3
votes
1answer
210 views
What's the difference between <c t=“str”> and <c><is> in Office Open XML?
What's the difference between these two Office Open XML fragments?
<c r="A2" t="str">
<v>btyler</v>
</c>
and
<c r="B2">
...
3
votes
1answer
132 views
What does <a:theme> mean in OpenXML?
I'm try to understand OpenXML spreadsheet inner file content.
IN some file I found this string . Other tags has same prefix.
Also tags may have prefixes p: w: etc.
Can you help me undestend the ...
3
votes
2answers
2k views
Excel add data to WorksheetPart in code behind
Hello guys I am creating an Excel file with 3 worksheets in the following code.
using (SpreadsheetDocument spreadSheet = SpreadsheetDocument.Create(path + @"\UrlReport.xlsx", ...
3
votes
2answers
2k views
reading Excel Open XML is ignoring blank cells
I am using the accepted solution here to convert an excel sheet into a datatable. This works fine if I have "perfect" data but if I have a blank cell in the middle of my data it seems to put the ...
3
votes
3answers
684 views
Link to Microsoft Open XML SDK tutorials
Anyone know any link to a good Microsoft Open XML tutorials?
3
votes
1answer
204 views
Programming Word XML in .NET
I'm currently in a development team trying to come up with an app that will be able to accept an Open XML Word document, shred the XML and somehow come up with UI screens on the fly that could be used ...
3
votes
3answers
2k views
Replacing Content Controls in OpenXML
I need something as a placeholder. I at first looked to Content Control as a solution but I'm having some problems with it.
I then looked into adding CustomXML to the .docx but turned away from that ...
3
votes
2answers
507 views
C# to replace strings of text in a docx
Using C#, is there a good way to find and replace a text string in a docx file without having word installed on that machine?
3
votes
2answers
357 views
Inject Open XML into an Open PowerPoint Presentation
I'm looking for a way to inject PresentationML and/or DrawingML into an open PowerPoint 2007/2010 presentation using the Open XML SDK or just System.IO.Packaging. There is an article on doing this ...
3
votes
1answer
1k views
OpenXML: Replace <sdt/> element with table in WordprocessingML
I'm using the OpenXML SDK to programatically replace some <w:sdt/> elements with chunks of OpenXML (WordProcessingML) markup.
For example, I have a paragraph with these contents:
<w:p>
...
3
votes
1answer
514 views
Save PowerPoint 2007 as PowerPoint 2003 using Open Office SDK 2.0
Is there anyway to use the Open Office SDK 2.0 to save a PowerPoint presention that you created using OOXML to a PowerPoint 2003 presentation? I know if you open a 2007 file and click Save As you ...
3
votes
1answer
438 views
.NET OpenXML SDK 2 RunProperties are Null
I'm trying to read Word 2007 docx document.
The document looks fine inside Word, but when i try to read id using my code, all Run objects have RunProperites set null.
The property that I'm most ...
3
votes
2answers
2k views
How to add content control in a word 2007 document using open xml
Hi
I want to create a word 2007 document without using object model. So I would prefer to create it using open xml format. So far I have been able to create the document. Now I want to add a content ...
2
votes
3answers
64 views
OpenXML linq query
I'm using OpenXML to open a spreadsheet and loop through the rows of a spreadsheet. I have a linq query that returns all cells within a row. The linq query was ripped straight from a demo on the MSDN. ...
2
votes
2answers
82 views
OpenXML Power Tools trouble compiling: 'OutputTypeAttribute' could not be found
I am using the OpenXMLSDK for some DOCX manipulation. I am trying to compile the OpenXML Power Tools source for help with this. I read that I needed to instal the MS Power Shell for this to compile ...
2
votes
1answer
120 views
Saving and autosaving PowerPoint OpenXML PresentationDocuments
I'm looking for some advice about saving OpenXML documents, specifically a PresentationDocument.
In my scenario I open a PowerPoint .pptx presentation directly from disk, that acts as a template. I ...
2
votes
1answer
84 views
What frameworks built upon Open XML SDK are there?
Since the Open XML SDK only provides strongly typed classes it does not really take pain of creating and manipulating Open XML documents. Are there any frameworks built upon the Open XML SDK that do ...
2
votes
1answer
506 views
Open XML SDK: Format part of an Excel-cell
Using Open XML for Excel with DocumentFormat.OpenXml.Spreadsheet, how do I set only part of a text to bold?
var cell = new Cell {
//DataType = CellValues.InlineString,
CellReference = "A" + 1
...