![]() |
|
#2
|
||||
|
||||
|
Try:
Code:
Sub ListHyperlinks()
Dim i As Long, strOut As String, f As Long
Const StrFlOut As String = "C:\Test1.txt"
With ActiveDocument
For i = 1 To .Hyperlinks.Count
strOut = strOut & Mid(.Hyperlinks(i).Address, 36, 75) & vbCr
Next
End With
f = FreeFile()
Open StrFlOut For Output As #f
Print #f, strOut
Close #f
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Creating a list of Hyperlinks in PPT deck
|
Desiderata | PowerPoint | 5 | 06-16-2016 02:37 AM |
Inserting Only Part of File Name in Word
|
ClaireLivings | Word | 1 | 04-14-2016 08:08 AM |
Multiple part presentation - how to present only a subset of slides + a conclusion ?
|
dchabaut | PowerPoint | 3 | 04-07-2015 10:16 AM |
Copying a part of a docx file as a separate file
|
officeboy09 | Word | 6 | 09-26-2014 05:15 PM |
| Multiple sharepoint list pst file | vik__ | Outlook | 0 | 10-30-2010 02:04 AM |