From: Faraz Ahmed Qureshi on
Right click provides for removal of a hyperlink but only when each and every
link is operated upon separately. How to remove all the links from a document
in a single click?
--
Thanx & Best Regards,

Faraz!
From: Graham Mayor on
If you want to remove all trace of Hyperlinks including the tip text then
search for and replace the Hyperlink paragraph style with nothing. The
following macro will do that.

Dim oRng As Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = ""
.Style = "Hyperlink"
Do While .Execute = True
oRng.Delete
Loop
End With

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>


"Faraz Ahmed Qureshi" <FarazAhmedQureshi(a)discussions.microsoft.com> wrote in
message news:B7830EEE-4966-4F2E-A3FC-01393480A23B(a)microsoft.com...
> Right click provides for removal of a hyperlink but only when each and
> every
> link is operated upon separately. How to remove all the links from a
> document
> in a single click?
> --
> Thanx & Best Regards,
>
> Faraz!