J
JimR
I am attempting to mass the hyperlinks contained on presentation. For
example, withan address of::
http://webprinters.lasalle.na.abnamro.com/confirm.asp?srv=USPSTRYTOC06&name=USPRTRY136215
I am attempting to edit the portion of the string containing USPSTRYTOC06 to
USPSTRYTOC01. I can access the correct shape properties utilizing the
following code:
For Each s In ActivePresentation.Slides
For Each h In s.Hyperlinks
OldAddress = h.Address
FoundText = h.Address.Find(FindWhat:="USPSTRYTOC06")
snwew = OldAddress.Replace("USPSTRYTOC06", "USPSTRYTOC01")
Next
Next
However, I can get nether the Find nor the Replace to work. Needless to
say, I would really like to get the replace to work. If anyone has any
suggestions, I would be greatfull.
example, withan address of::
http://webprinters.lasalle.na.abnamro.com/confirm.asp?srv=USPSTRYTOC06&name=USPRTRY136215
I am attempting to edit the portion of the string containing USPSTRYTOC06 to
USPSTRYTOC01. I can access the correct shape properties utilizing the
following code:
For Each s In ActivePresentation.Slides
For Each h In s.Hyperlinks
OldAddress = h.Address
FoundText = h.Address.Find(FindWhat:="USPSTRYTOC06")
snwew = OldAddress.Replace("USPSTRYTOC06", "USPSTRYTOC01")
Next
Next
However, I can get nether the Find nor the Replace to work. Needless to
say, I would really like to get the replace to work. If anyone has any
suggestions, I would be greatfull.