help,how to get Revisions in a table 
Author Message
 help,how to get Revisions in a table

VBA code example:

if ActiveDocument.Tables(1).Range.Revisions.Count">0 then
   Msgbox(ActiveDocument.Tables(1).Range.Revisions(1).Author)
end if

but system told me "ActiveDocument.Tables(1).Range.Revisions(1)" no exist,



Sat, 15 Oct 2005 17:58:42 GMT  
 help,how to get Revisions in a table
Hi,

The following works fine on my system:

With ActiveDocument.Tables(1).Range
    If .Revisions.Count > 0 Then
       MsgBox .Revisions(1).Author
    End If
End With

HTH


Quote:
> VBA code example:

> if ActiveDocument.Tables(1).Range.Revisions.Count">0 then
>    Msgbox(ActiveDocument.Tables(1).Range.Revisions(1).Author)
> end if

> but system told me "ActiveDocument.Tables(1).Range.Revisions(1)" no exist,



Sat, 15 Oct 2005 23:08:03 GMT  
 help,how to get Revisions in a table
which version u r using ?

I think this is a bug in word 2000, its not return tracked status in table
cells if first cell's first char is tracked then only it will show u the
tracking info. this problem is not in XP

HTH........ragards
arun

Quote:
> Hi,

> The following works fine on my system:

> With ActiveDocument.Tables(1).Range
>     If .Revisions.Count > 0 Then
>        MsgBox .Revisions(1).Author
>     End If
> End With

> HTH



> > VBA code example:

> > if ActiveDocument.Tables(1).Range.Revisions.Count">0 then
> >    Msgbox(ActiveDocument.Tables(1).Range.Revisions(1).Author)
> > end if

> > but system told me "ActiveDocument.Tables(1).Range.Revisions(1)" no
exist,



Mon, 17 Oct 2005 14:47:35 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Revisions in tables

2. Revisions collection stops code in a table

3. Table Revision via Macro

4. Free Info: Word 2000, Revisions within tables

5. Need Help Getting The Description Column For A Table

6. Getting location of attached tables help

7. HELP! track revisions via VBA

8. Getting Table Number of Word Table

9. HELP: Getting the WHERE from 1) the filter window or 2) a table recordset

10. help getting access VB 3.0 system tables

11. newbie - help getting values from fields in tables

12. HELP: Getting table data from EXCEL via Exel OBJECT and then dumping result in Flexgrid

 

 
Powered by phpBB® Forum Software