PDA

View Full Version : Convert doc into txt file using Qt



live_07
23rd January 2009, 13:48
How to convert doc file into txt file using Qt?

Thanks in advance

wysota
23rd January 2009, 14:27
Why would you think Qt allowed one to work with proprietary Microsoft data formats? If you want to convert a Word document to text, find a library for converting Word documents to other formats or parse Word file yourself (it is a variation of RTF) and extract text from it using QString, QFile and similar classes.