![]() |
|
![]() |
|
Thread Tools | Display Modes |
#31
|
|||
|
|||
![]() Quote:
Robert has reported that the problem is not there in Word 2019. Microsoft 365 would have the same characteristic. |
#32
|
|||
|
|||
![]()
Indeed, and thanks Robert. But still it would be useful to know if the problem is absent in Word 2010, given that the smaller the upgrade, the fewer the new problems (AFAICS).
|
#33
|
|||
|
|||
![]()
Solution found. A macro to adjust the hyperlink address. Attached [REMOVED].
Is seems the fault is not in the follow operation, but in CTRL+K Insert Hyperlink, creating a faulty address. My previous manual attempt to correct this was apparently defeated, seemingly by the obstruction of field address editing I now see mentioned elsewhere. Last edited by chrisjj; 09-14-2025 at 04:47 AM. |
#34
|
|||
|
|||
![]()
PS Version that fixes [ and {:
Code:
Option Explicit Sub FixHyperlinkAddress() ' e.g. ' Was FAIL New PDF Document %5b.pdf ' Is FAIL New PDF Document [.pdf Debug.Print ("---------") Dim hlink As Hyperlink For Each hlink In ActiveDocument.Hyperlinks Debug.Print ("Was " & hlink.Address) hlink.Address = Replace(hlink.Address, "%5b", "[") hlink.Address = Replace(hlink.Address, "%7b", "{") Debug.Print ("Is " & hlink.Address) Next hlink Beep End Sub PS The # case https://www.msofficeforums.com/word/...e-address.html is a different kind of fail and I can see no similar solution. |
![]() |
Tags |
word 2007 |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Spider8816 | Word | 3 | 10-16-2024 05:04 AM |
Hyperlink: open the document only once, quit & reopen PP, hyperlink doesnt work anymore | quanghuynguyenhua | PowerPoint | 0 | 10-10-2015 06:17 PM |
Convert Word 2007 macro to work in Word 2003 | Kamaflage | Word VBA | 1 | 02-25-2015 11:40 PM |
moving follow up flags - outlook 2003 | Newmarket2 | Outlook | 0 | 01-13-2013 04:46 PM |
Hyperlink warning for Powerpoint 2007 with Office 2003 | cinci-hal | PowerPoint | 0 | 03-01-2012 10:52 AM |