Outlook Outlook 2007 Font

lms

Joined
Aug 7, 2013
Messages
2
Reaction score
0
I have a macro that creates a Calendar Event for selected contacts, and in the body of the Calendar Event, it shows words from certain fields of each Contact selected.

So for example, the field of the Contacts which is the FullName of each Contact, the full name of the Contact shows up as to each Contact selected.

Is there a way to add to the macro so that the words coming from the FullName field can be designed as a font that would be Times New Roman 14, Color Blue, Bold and Underlined Bold? And it's not be selecting the words and changing font…it is simply automatic when it shows up in the Body field.

So there is the standard code lines that come with it, and here is the basic code lines that does what I said above :

Dim strDynamicDL2 As String

strDynamicDL = strDynamicDL & objItem.FullName & (";")

With itmAppt.Body

itmAppt.Body = strDynamicDL2

End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top