Question : How do i apply formatting to all hyperlinks in Word 2007?

How can i apply certain formatting(i.e. bold) to all hyperlinks in Word 2007? The hyperlinks in my documents do not have the hyperlink style because i didn't add them manually. The hyperlinks are proper hyperlinks that Word does recognize (i.e. i can edit the hyperlink, they have an alternative text, i can follow them). A VBA sollution would be fine as well.

Answer : How do i apply formatting to all hyperlinks in Word 2007?

This will  format all the hyperlinks in the body text.
1:
2:
3:
4:
5:
6:
7:
Sub FormatHyperlinkFont()
    Dim hyp As Hyperlink
    
    For Each hyp In ActiveDocument.Hyperlinks
        hyp.Range.Font.Bold = True
    Next hyp
End Sub
Random Solutions  
 
programming4us programming4us