Compare Word docs
C#
2
Posts
2
Posters
0
Views
1
Watching
-
i have to compare a word document which has been edited with the original ie., document before editing. how do i do this in c#.
Nitin Raj Bidkikar
You haven't specified the version on word so I'm going to assume you don't mean 2007. Older versions of word use Structured Storage aka DocFile. These files are accessed via the windows api ... heres an article covering that api: http://www.codeproject.com/file/structstor.asp[^] There are lots of hits on google for using Strucutred Storage[^] and DocFile[^] from C#.