You can delete the text with a frame parameter using Replace
Sub ReplaceExample()
With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Replacement.ClearFormatting
'**********************
.Text = ""
.Frame.TextWrap = True
.Replacement.Text = ""
'**********************
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
.Execute replace:=wdReplaceAll
End With
End With
End Sub

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Dear Experts:
> I would like to be able to delete ALL FRAMES in a document using VBA.
[quoted text clipped - 12 lines]
> Next frm
> End Sub
andreas - 23 Aug 2007 07:48 GMT
> You can delete the text with a frame parameter using Replace
>
[quoted text clipped - 48 lines]
>
> - Zitierten Text anzeigen -
Graham,
thank you very much. It is working fine. Regards, Andreas