G
Guest
I'm trying to construnct a string for a hyperlink in VBA which will display a
different value from the actual address (string is passed to Outlook mail
message). E.g. the display of the link would say Approve, and not show the
entire address.
I'm building the string in Access, and then sending all the email, subject,
body etc. to Outlook. The constructed string is ApprvLink = "<a href=" &
Chr(34) & "http://www.test.com/development/LOPSummary.aspx" & Chr(34) &
">Approve</a>"
the result in the email body is: <a
href="http://www.test.com/development/LOPSummary.aspx">Approve</a>
I am trying to just have it display Approve, and clicking the link would go
to the address.
If I just send the address
(http://www.test.com/development/LOPSummary.aspx), without the html tags, it
works fine, but the display is not what I want (the full web address).
Am I missing something? Is there a way to accomplish this?
thanks for any assistance,
Tom
different value from the actual address (string is passed to Outlook mail
message). E.g. the display of the link would say Approve, and not show the
entire address.
I'm building the string in Access, and then sending all the email, subject,
body etc. to Outlook. The constructed string is ApprvLink = "<a href=" &
Chr(34) & "http://www.test.com/development/LOPSummary.aspx" & Chr(34) &
">Approve</a>"
the result in the email body is: <a
href="http://www.test.com/development/LOPSummary.aspx">Approve</a>
I am trying to just have it display Approve, and clicking the link would go
to the address.
If I just send the address
(http://www.test.com/development/LOPSummary.aspx), without the html tags, it
works fine, but the display is not what I want (the full web address).
Am I missing something? Is there a way to accomplish this?
thanks for any assistance,
Tom