PDA

View Full Version : Reference Appointment Item



specialk9203
06-26-2014, 12:54 PM
Does anyone know how to reference the default appointment item in Outlook? One that is not a category.

skatonni
07-10-2014, 03:59 PM
I suppose you want this.


Sub CreateAppt()
Dim myAppt As AppointmentItem
Set myAppt = Application.CreateItem(olAppointmentItem)
myAppt.Display
End Sub