Creating a New Calendar Item : Outlook Calendar « Outlook « VBA / Excel / Access / Word






Creating a New Calendar Item

 
Sub app()
    Dim myAppointment As AppointmentItem
    Set myAppointment = Application.CreateItem(ItemType:=olAppointmentItem)
End Sub

 








Related examples in the same category

1.Working with the Contents of a Calendar Item