Re: Loop thru bookmarks by Jezebel
Jezebel
Wed May 04 16:39:33 CDT 2005
Dim pBookMark as word.bookmark
For each pBookMark in Table.Range.Bookmarks
If left$(pBookmark.Name,3) = "Pic" then
pBookmark.Range.Font.Color = wdColorWhite
End if
Next
"Wylie C" <WylieC@discussions.microsoft.com> wrote in message
news:69D26B8A-57C0-47C2-84C0-F83EBBEC7CEB@microsoft.com...
>I want to loop through all the bookmarks in a Word table who's name starts
> with "Pic" and set the font color to white. Help please?
>
> Thank you.