isladogs
MVP / VIP
- Local time
- Today, 14:09
- Joined
- Jan 14, 2017
- Messages
- 18,793
Hi
Does anyone know how to correctly make a clickable email link in an Access rich text box for a memo field?
Background:
To create a clickable URL link in a rich text box for a memo field you use something like this:
This of course will be shown as www.bbc.co.uk
The equivalent for email SHOULD be:
This displays 'xyz@btinternet.com' (without the quotes) but isn't a clickable link
However if you add mailto: to the displayed part like this:
you get a clickable link but its shown as mailto:xyz@btinternet.com
This could confuse people as it implies 'mailto:' is part of the address ...!
How to solve? Any ideas?
NOTE: Also posted here: http://www.utteraccess.com/forum/index.php?showtopic=2045314
Does anyone know how to correctly make a clickable email link in an Access rich text box for a memo field?
Background:
To create a clickable URL link in a rich text box for a memo field you use something like this:
Code:
<a href="http://www.bbc.co.uk">www.bbc.co.uk</a>
The equivalent for email SHOULD be:
Code:
<a href="mailto:xyz@btinternet.com">xyz@btinternet.com</a>
However if you add mailto: to the displayed part like this:
Code:
<a href="mailto:xyz@btinternet.com">mailto:xyz@btinternet.com</a>
This could confuse people as it implies 'mailto:' is part of the address ...!
How to solve? Any ideas?
NOTE: Also posted here: http://www.utteraccess.com/forum/index.php?showtopic=2045314
Last edited: