G
George Seese
Word2000 code:
---
With Selection.Find
.Forward = True
.ClearFormatting
.MatchWholeWord = True
.MatchCase = True
.Execute findtext:="COMPANYNAME"
If .Found = true Then
If Selection.Font.AllCaps = False Then
Selection.Font.AllCaps = True
End If
End If
End With
---
With Selection.Find
.Forward = True
.ClearFormatting
.MatchWholeWord = True
.MatchCase = True
.Execute findtext:="COMPANYNAME"
If .Found = true Then
If Selection.Font.AllCaps = False Then
Selection.Font.AllCaps = True
End If
End If
End With