How can I box a calendar event in Outlook 2002?

M

Michael Bauer

What do you mean by "box an appointment"?

Adding an appointment:

Dim oAppt as Outlook.AppointmentItem
Set oAppt=Application.CreateItem(olAppointmentItem)
With oAppt
' ... fill properties
.Save
End with
 
Top