Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to convert .doc document to .docx type in vb.net, Can you please suggest me anything. Please help me out

share|improve this question
Try some of the solutions from social.msdn.microsoft.com/Forums/en-US/vsto/thread/… – Tariqulazam Jul 3 '12 at 10:36
I have seen that actually, Do u know any class library – Irvin Dua Jul 3 '12 at 10:39
File.Copy makes no sense. The OP needs something to convert between the different formats, not only changing extensions. – ErickPetru Jul 3 '12 at 10:40
File.copy does not work – Irvin Dua Jul 3 '12 at 10:48
2  
@HatSoft please, OP is asking for a way to convert the document, not rename it. – CodeCaster Jul 3 '12 at 10:51
show 2 more comments

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.

4 Answers

Office bundles an utility to do exactly what you need, it's nice because "It Just Works".

Command line follows:

"C:\Program Files\Microsoft Office\Office14\wordconv.exe" -oice -nme SourceFileName.doc TargetFileName.docx

Fix the path accordingly and you're good to go.

share|improve this answer
would it be alright, because I need to take the content to htmleditor in asp.net as I am working on website project – Irvin Dua Jul 3 '12 at 10:54
The content to an HTML editor? Does your editor really read .docx files? Do you actually mean convert .doc and .docx files to HTML?? – Rup Jul 3 '12 at 10:57
Oh look, I missed a tag ... Didn't notice it was asp.net related, sorry. You should be able to leverage this if the server has Office installed. By the way ... HTML editor ? – Alex Jul 3 '12 at 10:57
@Rup Yes you are right, HTML reads docx files – Irvin Dua Jul 3 '12 at 11:04

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

doc2x.exe test.doc -o output.docx
share|improve this answer
I am working on asp.net, Its not quick fix – Irvin Dua Jul 3 '12 at 11:06
You may be able to use the source code, or DLLs there. If that doesn't work you can execute the exe file as above using System.Diagnostic.Process class. – Colombo Jul 3 '12 at 11:15

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).

share|improve this answer
Its all paid, do u know any free libary – Irvin Dua Jul 3 '12 at 11:06
@IrvinDua I've searched a lot some years back and only found those two above. Sorry. – Uwe Keim Jul 3 '12 at 11:53

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:

    object oOpenName = @"C:\My Documents\Route Map.doc";
    object oSaveName = @"C:\My Documents\Route Map.docx";
    object missing = System.Reflection.Missing.Value;
    object fileFormat = WdSaveFormat.wdFormatDocumentDefault;


    Application wdApp = new Application();
    Document doc = wdApp.Documents.Open(ref oOpenName, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);
    doc.SaveAs(ref oSaveName, ref fileFormat, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);

    doc.Close(ref missing, ref missing, ref missing);

    System.Runtime.InteropServices.Marshal.ReleaseComObject(wdApp);

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.