Sub newappt()
Dim cAppt As AppointmentItem
Set cAppt = Application.CreateItem(olAppointmentItem)
With cAppt
.Subject = "New: "
.Start = Now() + 0.125 'fraction of a day
.Duration = 130 'minutes
.Location = "Somewhere, over the rainbow"
.Body = "Making a new appt!"
.Display
End With
End Sub