I need to convert .doc document to .docx type in vb.net, Can you please suggest me anything. Please help me out
closed as off topic by Kris, casperOne♦ Oct 16 '12 at 12:55
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Office bundles an utility to do exactly what you need, it's nice because "It Just Works". Command line follows:
Fix the path accordingly and you're good to go. |
|||||||||
|
|
You can download an opensource command-line Binary(doc,xls,ppt) to OpenXMLTranslator from http://sourceforge.net/projects/b2xtranslator/files/b2xtranslator/Phase%203%20-%20Milestone%205/ Run at command prompt as
|
|||
|
Usually, I'm doing this with an external (commercial) library. I've jused both of the following successfully in projects: Both worked for me. Depending on the complexity of your source documents, the output will not be 100% the same; in my projects, the results were always more than sufficient for the users (although we had some small issues in the past with Aspose which were solved by fixes/new versions, after reporting them to Aspose). |
|||
|
You can use the following code but you would need to use Microsoft Office Interop Word Assembly 12.0 or higher and you need to have MS WORD 2007 or higher installed:
This is my first code with VB.Net so took a little time. You can customize this as per your requirement. Edit: Just saw this was related to ASP.Net. Not sure how useful this can be for ASP.Net project. |
||||
|
|
File.Copymakes no sense. The OP needs something to convert between the different formats, not only changing extensions. – ErickPetru Jul 3 '12 at 10:40