From: Faraz Ahmed Qureshi on 29 Apr 2010 23:59 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 30 Apr 2010 01:05 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!
|
Pages: 1 Prev: Word should have bulk auto-correct for speed typing Next: mail merge with different subjects |