S
supersub15
Hi there,
I'm kind of a novice, so any help is appreciated.
I'm trying to create a macro that looks into the document to find
hyperlinks, and if they're not already blue and underlined, make them
so.
I got this far, but I'm not sure if it's correct and where to go from
here:
Dim objHyperlink As Word.Hyperlink
Dim objWdRange As Word.Range
'check for hyperlinks
If objWdRange.Hyperlinks.Count > 0 Then
For Each objHyperlink In WdRange.Hyperlinks
xxxxx
Next
End If
End Sub
Thanks for your help.
Carlos
I'm kind of a novice, so any help is appreciated.
I'm trying to create a macro that looks into the document to find
hyperlinks, and if they're not already blue and underlined, make them
so.
I got this far, but I'm not sure if it's correct and where to go from
here:
Dim objHyperlink As Word.Hyperlink
Dim objWdRange As Word.Range
'check for hyperlinks
If objWdRange.Hyperlinks.Count > 0 Then
For Each objHyperlink In WdRange.Hyperlinks
xxxxx
Next
End If
End Sub
Thanks for your help.
Carlos