Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Microsoft Word in "compare document" mode from command prompt

I am working on a web project where client needs a functionality to first upload some MS Word document & then he can compare any two of the uploaded documents.

The idea I came up with is to first make the documents available using WEBDAV & then open both documents using command line with "Compare side by side" option. In this way he will be able to compare & modify two documents.

The problem is, I am not able to find any command which can be run from command prompt to open two documents in compare mode.

Also, if you know any other way to achieve this functionality then please share it with me.

like image 655
araaku Avatar asked Apr 09 '10 09:04

araaku


2 Answers

This may be an approach (for Visual Studio 2010)

I mixed together the two following links

http://social.msdn.microsoft.com/Forums/en-US/b7f4b480-ca1c-49a1-a2ea-b1d1cf5ad56b/how-do-you-compare-two-word-documents-in-c

http://msdn.microsoft.com/en-us/library/vstudio/ee342218%28v=vs.100%29.aspx

to a C# Console Project to which I added added the Reference: .NET --> Microsoft.Office.Interop.Word Version 14.0.0.0

here the source:

Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Word = Microsoft.Office.Interop.Word;
//using Office = Microsoft.Office.Core;
//using Microsoft.Office.Tools.Word;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Word.Application wordApp = new Word.Application();
            wordApp.Visible = false;
            object wordTrue = (object)true;
            object wordFalse = (object)false;
            object fileToOpen = @"C:\Temp\1.docx";
            object missing = Type.Missing;
            Word.Document doc1 = wordApp.Documents.Open(ref fileToOpen,
                   ref missing, ref wordFalse, ref wordFalse, ref missing,
                   ref missing, ref missing, ref missing, ref missing,
                   ref missing, ref missing, ref wordTrue, ref missing,
                   ref missing, ref missing, ref missing);

            object fileToOpen1 = @"C:\Temp\2.docx";
            Word.Document doc2 = wordApp.Documents.Open(ref fileToOpen1,
                   ref missing, ref wordFalse, ref wordFalse, ref missing,
                   ref missing, ref missing, ref missing, ref missing,
                   ref missing, ref missing, ref missing, ref missing,
                   ref missing, ref missing, ref missing);

            Word.Document doc = wordApp.CompareDocuments(doc1, doc2, Word.WdCompareDestination.wdCompareDestinationNew, Word.WdGranularity.wdGranularityWordLevel,
                true, true, true, true, true, true, true, true, true, true, "", true);

            doc1.Close(ref missing,ref missing,ref missing);
            doc2.Close(ref missing,ref missing,ref missing);
            wordApp.Visible = true;
        }

    }
}

TODO:

  • Replace 1.docx and 2.docx with strings from command line
  • maybe some Exception handling
like image 50
grenix Avatar answered Oct 07 '22 04:10

grenix


There is a project to do this using a PowerShell script, ExtDiff: https://github.com/ForNeVeR/ExtDiff

like image 40
jtpereyda Avatar answered Oct 07 '22 05:10

jtpereyda