How to change font style in Appointment

G

Guest

Hi

Is there any programmatical method to change font style in a appointmentitem
object ?
I have the following code which add a new appointment object, however, I
want to change the font size of some of the body text to indicate the
importance
How can I do this via VBA

Thank in advance

Code:

Dim myAppoint as AppointmentItem

Set myAppoint = Application.CreateItem(olAppointmentItem)

myAppoint.Start = Now() + 1

myAppoint.End = Now() + 1

myAppoint.Subject = "Meeting"

myAppoint.Body = "Meeting with client Mr. Micheal Fred" ' <- I want to
enlarge and bold the client name

myAppoint.Save
 

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