home *** CD-ROM | disk | FTP | other *** search
- Sub Kursiv_finden()
- '
- ' Kursiv_finden Makro
- ' Makro aufgezeichnet am 15.04.2002 von Frank Arnoldt
- '
- Selection.Find.ClearFormatting
- Selection.Find.Replacement.ClearFormatting
- Selection.Find.Font.Italic = True
- With Selection.Find
- .Text = ""
- .Replacement.Text = ""
- .Forward = True
- .Wrap = wdFindContinue
- .Format = True
- .MatchCase = False
- .MatchWholeWord = False
- .MatchWildcards = False
- .MatchSoundsLike = False
- .MatchAllWordForms = False
- End With
- Selection.Find.Execute
- End Sub
-