I’m making a small application to verify whether Word 2003 documents can be converted into PDF format using C#, and I’m using the ExportAsFixedFormat method. It works in Word 2010. Can anybody help me?
I’m making a small application to verify whether Word 2003 documents can be converted
Share
According to the docs, the
ExportToFixedFormatmethod was added in Word 2007. So I’m betting, no, you can’t export a Word 2003 document.One thing you could try is the
Convertmethod, which in theory should allow you to convert the 2003 file to 2007 format, then export it to PDF.