How to change font style in Appointment

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
Back
Top