tags:

views:

34

answers:

1

I want to open two documents in compare mode programatically.

Something like:

Process.Start("winword.exe", string.Format("/n /compare \"Document.docx\" \"Document_V2.docx\""

Is that possible?

+2  A: 

It's possible with COM automation interfaces.

See _Application.CompareDocuments

gandjustas
Can you make me a little example?... i just want to open Microsoft Word for the client.
Fraga