I need a library that will allow reading WPD files in .NET environment.
So far I've only found libwpd.
That seems to be a native library and no documentation is available for using it with .NET Interop.
Another solution would be using a command-line converter to another, more common format (e.g. RTF, HTML or ODT), but I can't find such converter either.
Can anyone help?
It turns out Corel doesn't provide dlls to download and they must be generated for each version of WordPerfect. I found the relevant information here:
.NET-Programming-Interop-Assemblies on wpuniverse.com
C:\Program Files (x86)\Corel\WordPerfect Office X6\Programs\wpwin16.tlbInterop.WordPerfect.dllfilePut a using statement like this in your file:
using WordPerfect;and do something like this:There is intellisense available and the above link to wpuniverse should help.