Tagged Questions
Questions regarding reading and writing of Microsoft Office Open XML files either through direct manipulation of the xml files contained in a zip package or through the Microsoft Office Open XML SDK.
34
votes
16answers
23k views
How can a Word document be created in C#?
I have a project where I would like to generate a report export in MS Word format. The report will include images/graphs, tables, and text. What is the best way to do this? Third party tools? What ...
16
votes
10answers
6k views
How can I read a Word 2007 .docx file?
I'd like to search a Word 2007 file (.docx) for a text string, e.g., "some special phrase" that could/would be found from a search within Word.
Is there a way from Python to see the text? I have ...
15
votes
4answers
2k views
Will Subversion efficiently store OpenXML Office documents?
I have been managing Subversion as an engineering document storage repository for my company. It is working fairly well, however I have a question about how MS Office 2007 formats are (should be) ...
11
votes
6answers
685 views
How much has Open XML caught on?
I'm curious as to how many people are using Open XML (OOXML) these days (either pure or via the SDK) in closed and commercial environments. I'm fairly aware of what's going on on the 'public web' ...
10
votes
3answers
16k views
Creating Excel document with OpenXml sdk 2.0
I have created an Excel document using OpenXml SDK 2.0, now I have to style It, but I can`t.
I don't know how to paint the background color or change the font size in different cells.
My code to ...
9
votes
5answers
328 views
Is there a dev kit/lib (written in c or c++) to write docx files?
Is there a dev kit/lib (written in c or c++) to write docx files? Microsoft has a dev kit, but it's written in C#.
9
votes
8answers
8k views
How can I programatically use C# to append multiple DOCX files together?
I need to use C# programatically to append several preexisting DOCX files into a single, long DOCX file - including special markups like bullets and images. Header and footer information will be ...
8
votes
1answer
114 views
Excel to SQL, C# libraries
I have an excel spreadsheet that a client has given me which is broken down into multiple worksheets. I need to extract certain columns from each worksheet on a row-by-row basis and to iterate through ...
7
votes
1answer
61 views
How to create .doc file or word processor in iOS application?
Hello Friends,
I am looking for word file processing in IOS application. I digging many things on google from that i found word file is based on OOXML. It`s possible for iOS to follow this ...
7
votes
2answers
355 views
OpenXml Spreadsheet. Value filters, styles and unicode characters
because of small documentation i have problems with OpenXml SpreadSheetDocument in C#.
How to make top row with filter?
How to make colors to alternate?
I want to put unicode characters in my ...
6
votes
1answer
302 views
Named Ranges in Excel OpenXML
I am trying to create named ranges in Excel with OpenXML. I am able to add a DefinedName in the DefinedNames collection, but that does not seem to do anything. I noticed a place in the ...
6
votes
2answers
669 views
Open XML - How to add a watermark to a docx document
I'm trying to take an existing document and if a header doesn't exist, create one, and then add a watermark to the header that says "DRAFT" diagonally. I've followed an example posted here and I've ...
6
votes
1answer
796 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
1answer
316 views
open xml to query excel cells
In the past i created a component to pass and retrieve values from /to excel using the excel libraries. The good thing is that once you have your workbook in memory and modify a cell (lets call origin ...
6
votes
3answers
324 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
2k views
Inserting newlines in Word using OpenXML
I am using openxml WordProcessingDocument to open a Word template and replace placeholder x1 with a string. This works fine unless I need the string to contain a newline.
How can I replace x1 with ...
6
votes
1answer
1k views
C# API for MS Word Equation editor
Is there an API (preferably C#) to access the object model of equations created with MS Word's equation editor? I am looking for an API like the chart object to access properties of charts in Excel, ...
6
votes
2answers
670 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 ...
6
votes
2answers
404 views
Problem using large binary segment in OOXML
System Description
A plotting component that uses OOXML to generate a document.
Plotting component consists of several parts.
All parts are written in C++ as exe + dll's, with the exception of the ...
5
votes
1answer
142 views
Is the Rich Text Format deprecated?
From the Wikipedia page on Rich Text Format (http://en.wikipedia.org/wiki/Rich_Text_Format):
As of March 2008, the current version is 1.9.1. According to Microsoft's Office 2010
resource kit ...
5
votes
2answers
318 views
How can I export a DBGrid to OOXML format (Excel 2007/2010 format) without Excel installed?
I have a Delphi 2007 DBGrid that I'd like to allow the user to save in the newer Excel format (OOXML), but my criteria is that the user does not need to have Excel installed. Is anyone aware of any ...
5
votes
1answer
667 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
277 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
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
554 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 ...
5
votes
3answers
8k views
How to replace content in template docx document and Open XML SDK 2.0 (Aug 09)?
I have a "template" docx document which contains the desired layout, and wish to insert content using C#, but I cannot find a way to uniquely address specific sections of the document, such as ...
5
votes
1answer
427 views
.NET WinForms Editor Control that supports RTL\Hebrew and export to OOXML\PDF?
I'm interested in replacing an aging control we use in our project that is a simple HTML WYSIWYG editor.
The main requirements i'm looking for are as follows:
Support for RTL/Hebrew input.
Support ...
5
votes
3answers
1k views
What are some techniques for generating PowerPoint presentations without using Office Automation?
While it is possible to generate PowerPoint presentations automatically using Office Automation, this is not recommended for use on a server. How can you go about generating a PowerPoint presentation ...
5
votes
2answers
1k views
How to programmatically insert comments into a Microsoft Word document?
Looking for a way to programmatically insert comments (using the comments feature in Word) into a specific location in a MS Word document. I would prefer an approach that is usable across recent ...
5
votes
3answers
487 views
Adding Chart to WordprocessingML
I would like to generate an Open XML document containing a Chart using the Open Xml SDK 2.
I found an SpreadsheetML example, but I can't work out how to add the chart in a .docx...
Is there a good ...
5
votes
5answers
2k views
What is the best way to populate a Word 2007 template in C#?
I have a need to populate a Word 2007 document from code, including repeating table sections - currently I use an XML transform on the document.xml portion of the docx, but this is extremely time ...
5
votes
3answers
6k views
How do I convert a .docx to html using asp.net?
Word 2007 saves its documents in .docx format which is really a zip file with a bunch of stuff in it including an xml file with the document.
I want to be able to take a .docx file and drop it into a ...
4
votes
1answer
187 views
Get a CheckBox in Word using OpenXML
How does one get a handle to a CheckBox control that's embedded in a Word document using OpenXML?
You would think that either Paragraph.ControlPropertiesPart or Paragraph.Descendents() would achieve ...
4
votes
1answer
468 views
Programmatically count number of characters/words/paragraphs with a specific style in a DOCX document
I need to programmatically count the characters and/or words and/or paragraphs which have been applied a specific known style in a DOCX document.
I need to know 1) if this is possible and to 2) any ...
4
votes
1answer
225 views
Unable to append a sheet using OpenXml with F# (FSharp)
The CreateSpreadsheetWorkbook example method from the OpenXml documentation does translate directly to F#. The problem seems to be the Append method of the Sheets object. The code executes without ...
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
457 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
OpenXML nested tables
I am trying to insert a Table into a TableCell, but when I try to open it in MS Word I get a message like: "a <p> is required before a </tc>".
When I open the file in compatibility mode ...
4
votes
1answer
271 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
4answers
120 views
Should I be using an abstract base class for this purpose at this time?
I only very recently began developing professionally. I studied OOP while at University, but don't feel as if I ever really used it in a "real world" scenario.
Basically, in trying to ...
4
votes
2answers
2k views
openxml - inserting a row, moving others
I am using openxml to create an excel report. The openxml operates on a template excel file using named ranges.
The client requires a totals row at the end of the list of rows. Sounds like a ...
4
votes
2answers
118 views
error come to execute the stored procedure using with open xml in sql server
i execute the below stored procedure.but it shows the error. The error is
'Incorrect syntax near '.'.i.e error shows in 'xmlFields.Country'
please look this stored procedure also and help me thanks, ...
4
votes
3answers
610 views
Treating empty elements as nulls in SQL Server's OPENXML function
I have the following (highly simplified) XML document that I am reading into my database using the OPENXML function:
<root>
<row>
<bar>123</bar>
</row>
...
4
votes
2answers
603 views
ASP.NET library to extract plain text from Open XML file formats
Is there a pre-existing library to extract plain text form Open XML file formats (e.g. docx, pptx, and xlsx) files?
I require this to populate a lucene.net index.
I've found this example which ...
4
votes
1answer
566 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
0answers
423 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 ...