So Suche ich und lösche bis zum Ende im Dokument, sollte aber auch in der Fußzeile gehen.
Code:
Selection.EndKey
unit:=wdStory, Extend:=wdMove
Selection.Find.ClearFormatting
With Selection.Find
.Text = "---- delete hereof:"
.Replacement.Text = ""
.Forward = False
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchByte = False
.CorrectHangulEndings = True
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
.MatchFuzzy = False
End With
Selection.Find.Execute
Selection.EndKey
unit:=wdStory, Extend:=wdExtend
Selection.Delete
Gruß
K-H