
Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham,
Thanks for the help. Do you know of any way to at least detect if a text box
contains one or more merge fields? They way my app is setup, users pretty
much have full control over where they insert the merge fields. If possible,
I'd like a way to controls this behavoir, to avoid possible errors when the
merge is exectuted. Thanks again.
> Text boxes are not in the text layer of the document and do not work
> correctly with merge fields within them. Use a frame or a table.
[quoted text clipped - 14 lines]
> > bug in Word, or is there another set of Mail Merge fields I need to
> > look for? Any help would be appreciated.
Graham Mayor - 13 Feb 2005 23:00 GMT
Frankly no - though a macro to convert text boxes to frames might work
Sub BoxToFrame()
Dim oShp As Shape
For Each oShp In ActiveDocument.Shapes
oShp.ConvertToFrame
Next oShp
End Sub

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Graham,
>
[quoted text clipped - 32 lines]
>>> bug in Word, or is there another set of Mail Merge fields I need to
>>> look for? Any help would be appreciated.
blabore - 14 Feb 2005 02:51 GMT
Graham,
Thanks again.
> Frankly no - though a macro to convert text boxes to frames might work
>
[quoted text clipped - 41 lines]
> >>> bug in Word, or is there another set of Mail Merge fields I need to
> >>> look for? Any help would be appreciated.