Kenji said:
Everytime I send a string through ActiveWorkbook.FollowHyperlink, certain
characters get converted. For example "<" becomes "%3c"
Anyone know a solution to this? Thanks!
I'm not sure why you're looking for a solution. .FollowHyperlink
automatically resolves the address, which includes "escaping" reserved
characters like "<", which can be a URI delimiter, into its %-hex-hex
form. The resolution is (or should be) done per the internet standard
RFC 2396. See
http://www.ietf.org/rfc/rfc2396.txt?number=2396
Proposed standards have loosened up the need for escaping, and many
browsers resolve the characters before making the URI request, but the
escape sequences are still the standard.
As part of a URI (Address), < and %3c are equivalent.
Now, since you asked the question, I assume you ran into a problem with
the way .FollowHyperlink resolves the URI. Can you give more details?