Michael
Thu Jul 13 04:43:59 CDT 2006
It's by design. However, you can use the following code placed in the OnLoad
event to open a new email when double-clicking the field:
if (crmForm.all.emailaddress1 != null) {
crmForm.all.emailaddress1.ondblclick = function() {
var email = crmForm.all.emailaddress1.DataValue;
if ((email != null) && (email.length > 0)) {
window.navigate("mailto:" + email);
}
}
}
--
Michael
http://www.stunnware.com/crm
----------------------------------------------------------
"Bobby" <Bobby@discussions.microsoft.com> schrieb im Newsbeitrag
news:FA4432F8-E351-4B8E-B927-51417342EBE3@microsoft.com...
> When I type in an email address into a Contact, it goes in with blue font
> and
> an underline but I am unable to click on it once the contact is saved to
> send
> a Contact an email? Is this a problem with my installation or is this by
> design???
>
> -Bobby