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

RE: Contact Email Address by jim

jim
Thu Jul 13 03:36:01 CDT 2006

It's by design.


--

Jim Wang
Business Solutions Engineer
MCSE, MCDBA, Microsoft CRM Professional
United Kingdom


"Bobby" wrote:

> 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

Re: Contact Email Address by Michael

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