Hoshin
Hoshin

Reputation: 454

How to parse ms-office docs

I need to create a application (preferably in c#/win32) to open a office doc [97-2003 format] ( Word, PPT, EXCEL) and parse the data structures, validate the fields, values and cross references, show the errors found in the document and possible solutions to fix the errors in document as per specification.

Are there any tools available / open source library or documentations.

Can "Office Interop" help for parsing the details.

Upvotes: 1

Views: 1872

Answers (2)

C-F
C-F

Reputation: 1778

People recommend NPOI for such tasks

It's an open source library for .NET which do not require Office to be installed.

Upvotes: 1

icktoofay
icktoofay

Reputation: 129001

Here's the official documentation.

Upvotes: 2

Related Questions