Works great. Thank you so much.
> record a macro that changes the font if you don't know the code
> to make the change you require, then create a macro that wraps
[quoted text clipped - 9 lines]
>
> Eddie
Eddie,
You might want to consider using "range" for this sort of thing.
There is no need to actually select the individual tables.
Sub tablefontchange()
Dim aTable As Table
For Each aTable In ActiveDocument.Tables
aTable.Range.Font.Name = "Times New Romanl"
Next
End Sub
On Feb 2, 11:00 am, IdontWantS...@nospam.net (Edward Thrashcort)
wrote:
> record a macro that changes the font if you don't know the code
> to make the change you require, then create a macro that wraps
[quoted text clipped - 9 lines]
>
> Eddie
Edward Thrashcort - 02 Feb 2007 19:00 GMT
Yep I know.
I couldn't be bothered to load word to get the syntax right so I wrote it
from memory the easy way.
The Selection object, although functional, can be fraught with gotchas
Eddie
> *From:* "Greg Maxey" <gmaxey@mvps.org>
> *Date:* 2 Feb 2007 08:40:11 -0800
[quoted text clipped - 26 lines]
> >
> > Eddie