Lieber Experten,
ich habe drei Makros mit Word 2007 aufgezeichnet und möchte gerne, dass diese Makros bestimmte Textteile in einem Dokument doppelt durchstreichen. Es handelt sich um
1.
2. [Text in eckigen Klammern] und um
3. //Text zwischen doppelten Schrägstrichen und der nächsten Absatzmarke.
Die Makros funktionieren, jedoch nur einmal. Ich würde die Makros gerne jeweils das Dokument von Anfang bis Ende abarbeiten lassen, doch schaffe ich es nicht, eine Schleife zu basteln.
Wer könnte eine Schleife um die Makros (s.u.) herum schreiben? Oder gibt es noch eine andere Lösung, als die Dokumente von Anfang bis Ende abzuarbeiten?
Danke im Voraus.
Januario
- Sub SpitzKlammRaus()
’
’ SpitzKlammRaus Makro
’
’
Selection.Find.ClearFormatting
With Selection.Find
.Text = „“
With Selection.Font
.Name = „Courier New“
.Size = 10.5
.Bold = False
.Italic = False
.Underline = wdUnderlineNone
.UnderlineColor = wdColorAutomatic
.StrikeThrough = False
.DoubleStrikeThrough = True
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = False
.SmallCaps = False
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
.Spacing = 0
.Scaling = 100
.Position = 0
.Kerning = 0
.Animation = wdAnimationNone
End With
End Sub
- Sub DSlashZeilenDurchstreich()
’
’ DSlashZeilenDurchstreich Makro
’
’
Selection.Find.ClearFormatting
With Selection.Find
.Text = „//“
.Replacement.Text = „“
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.MoveDown Unit:=wdParagraph, Count:=1, Extend:=wdExtend
With Selection.Font
.Name = „Courier New“
.Size = 10.5
.Bold = False
.Italic = False
.Underline = wdUnderlineNone
.UnderlineColor = wdColorAutomatic
.StrikeThrough = False
.DoubleStrikeThrough = True
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = False
.SmallCaps = False
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
.Spacing = 0
.Scaling = 100
.Position = 0
.Kerning = 0
.Animation = wdAnimationNone
End With
Selection.MoveRight Unit:=wdCharacter, Count:=1
End Sub
Sub SpitzKlammDurchstreich()
’
’ SpitzKlammDurchstreich Makro
’
’
Selection.Find.ClearFormatting
With Selection.Find.all
.Text = „“
With Selection.Font
.Name = „Courier New“
.Size = 10.5
.Bold = False
.Italic = False
.Underline = wdUnderlineNone
.UnderlineColor = wdColorAutomatic
.StrikeThrough = False
.DoubleStrikeThrough = True
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = False
.SmallCaps = False
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
.Spacing = 0
.Scaling = 100
.Position = 0
.Kerning = 0
.Animation = wdAnimationNone
End With
Selection.MoveRight Unit:=wdCharacter, Count:=1
End Sub