In need program which will get all deleted/modified track changes text from
compare document

Re: how to get deleted tracks in word using c#? by Jean-Guy

Jean-Guy
Mon Nov 26 13:06:53 PST 2007

Afzal Khan was telling us:
Afzal Khan nous racontait que :

> In need program which will get all deleted/modified track changes
> text from compare document

This is a VBA group.

You should try to get it going using VBA.
Come back with specific question regarding VBA to help you build the
program.

'_______________________________________
See the follwong code to get you going
Dim revCheck As Revision
Dim strTextRev As String

Set revCheck = Selection.NextRevision
If Not (revCheck Is Nothing) Then
Select Case revCheck.Type
Case wdRevisionDelete, wdRevisionInsert, wdRevisionReplace
'Do something with the text, like
strTextRev = strTextRev & revCheck.Range.Text & "|"
End Select
End If
'_______________________________________

Then, when you have something working in VBA, you can port it to C#, maybe
posting in a C# group for help.

--

Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org



Re: how to get deleted tracks in word using c#? by AfzalKhan

AfzalKhan
Sat Dec 01 02:52:00 PST 2007

By using this code I am able to read revisions in document but when revision
in table unable to move to next revision?

"Jean-Guy Marcil" wrote:

> Afzal Khan was telling us:
> Afzal Khan nous racontait que :
>
> > In need program which will get all deleted/modified track changes
> > text from compare document
>
> This is a VBA group.
>
> You should try to get it going using VBA.
> Come back with specific question regarding VBA to help you build the
> program.
>
> '_______________________________________
> See the follwong code to get you going
> Dim revCheck As Revision
> Dim strTextRev As String
>
> Set revCheck = Selection.NextRevision
> If Not (revCheck Is Nothing) Then
> Select Case revCheck.Type
> Case wdRevisionDelete, wdRevisionInsert, wdRevisionReplace
> 'Do something with the text, like
> strTextRev = strTextRev & revCheck.Range.Text & "|"
> End Select
> End If
> '_______________________________________
>
> Then, when you have something working in VBA, you can port it to C#, maybe
> posting in a C# group for help.
>
> --
>
> Salut!
> _______________________________________
> Jean-Guy Marcil - Word MVP
> jmarcilREMOVE@CAPSsympatico.caTHISTOO
> Word MVP site: http://www.word.mvps.org
>
>
>