P
Paul Breslin
Hello -
I have a macro to remove hyperlinks that works very well, (Microsoft Word
2000).
But, those annoying footnotes are a real pain.
When I download text from the Internet[1] and that text contains
footnotes[2], I have to remove the hyperlinks automatically[3] with a macro,
but have to remove each footnote manually.
Does anyone know of a macro that will do this?
This is the macro I use to delete hyperlinks in MS-Word 2000:
Sub RemoveHyperlinks()
Dim oField As Field
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldHyperlink Then
oField.Unlink
End If
Next
Set oField = Nothing
End Sub
Thanks,
Paul
I have a macro to remove hyperlinks that works very well, (Microsoft Word
2000).
But, those annoying footnotes are a real pain.
When I download text from the Internet[1] and that text contains
footnotes[2], I have to remove the hyperlinks automatically[3] with a macro,
but have to remove each footnote manually.
Does anyone know of a macro that will do this?
This is the macro I use to delete hyperlinks in MS-Word 2000:
Sub RemoveHyperlinks()
Dim oField As Field
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldHyperlink Then
oField.Unlink
End If
Next
Set oField = Nothing
End Sub
Thanks,
Paul