EMAIL field on Custom Outlook Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a custom Outlook form. I want to include 3 fields for email1, email2 and email3. When I create these fields and assign the Contact.email fields to them, thay show as read-only. How do I remove the RO attribute so that I can enter data, (I do not want to use the selector fields). THANKS

bh
 
You should instead drag the fields from the Field Chooser. They'll be ready
to edit. [The email fields actually store 3 separate properties, so you need
to use the special controls from the Field Chooser or use unbound controls.]

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



BH said:
I have created a custom Outlook form. I want to include 3 fields for
email1, email2 and email3. When I create these fields and assign the
Contact.email fields to them, thay show as read-only. How do I remove the
RO attribute so that I can enter data, (I do not want to use the selector
fields). THANKS
 
I am trying to reference the first of these "3 separate properties" (1st
E-mail address) when I am customising an Outlook Contact Form using VBScript.
On the form the field is called "E-mail Selected". In the Object Browser in
VBA I can you please tell me what is the object name of this?
--
Thank You in Advance,

Michael Anderson


Sue Mosher said:
You should instead drag the fields from the Field Chooser. They'll be ready
to edit. [The email fields actually store 3 separate properties, so you need
to use the special controls from the Field Chooser or use unbound controls.]

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



BH said:
I have created a custom Outlook form. I want to include 3 fields for
email1, email2 and email3. When I create these fields and assign the
Contact.email fields to them, thay show as read-only. How do I remove the
RO attribute so that I can enter data, (I do not want to use the selector
fields). THANKS
 
As you should be able to see in the object browser, Email1Address will get you the email address of the first of the three address entries.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers


Michael Anderson said:
I am trying to reference the first of these "3 separate properties" (1st
E-mail address) when I am customising an Outlook Contact Form using VBScript.
On the form the field is called "E-mail Selected". In the Object Browser in
VBA I can you please tell me what is the object name of this?
--
Thank You in Advance,

Michael Anderson


Sue Mosher said:
You should instead drag the fields from the Field Chooser. They'll be ready
to edit. [The email fields actually store 3 separate properties, so you need
to use the special controls from the Field Chooser or use unbound controls.]

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



BH said:
I have created a custom Outlook form. I want to include 3 fields for
email1, email2 and email3. When I create these fields and assign the
Contact.email fields to them, thay show as read-only. How do I remove the
RO attribute so that I can enter data, (I do not want to use the selector
fields). THANKS
 
Back
Top