J
John
Hello,
I need to append an HTML (bold+underlined) text to the
beginning of the body for an Outlook contact.
For example:
Dim oContact As Outlook.ContactItem
Set oContact = GetCurrentItem
sNewTxt = "<B><U>Test</B></U>" & Chr(13)
oContact.Body = sNewTxt & oContact.Body
Will result in the HTML being stripped from the old body
text and <B><U>... actually being written as text and not
as html. Mail messages have HTMLBody but I didn't see an
equivalent HTMLBody for contacts.
So how do you do set the HTML text for the Body of a
contact?
-John
I need to append an HTML (bold+underlined) text to the
beginning of the body for an Outlook contact.
For example:
Dim oContact As Outlook.ContactItem
Set oContact = GetCurrentItem
sNewTxt = "<B><U>Test</B></U>" & Chr(13)
oContact.Body = sNewTxt & oContact.Body
Will result in the HTML being stripped from the old body
text and <B><U>... actually being written as text and not
as html. Mail messages have HTMLBody but I didn't see an
equivalent HTMLBody for contacts.
So how do you do set the HTML text for the Body of a
contact?
-John