Hallo!
Ich will mit VBA einen Termin in Outlook erstellen:
Const olAppointmentItem = 1
Dim outApp As Object
Dim outItem As Object
Set outApp = CreateObject(„Outlook.Application“)
Set outItem = outApp.CreateItem(olAppointmentItem)
With outItem
.Subject = strSubject
.Body = „Mein Body“
.AllDayEvent = bolAllDay
.Duration = strDuration
.LOCATION = strLocation
If blnReminder = True Then
.ReminderMinutesBeforeStart = 10
Else
.ReminderMinutesBeforeStart = 0
End If
.Start = strStart
'.Category = „LifeForum“ – Farbkategorie wird bitte wie unterstützt???
.Save
End With
Set outItem = Nothing
Set outApp = Nothing
Mit dem Befehl .Category = …
will ich die in Outlook vorhandenen Kategorien ansprechen. Funktioniert aber nicht, es kommt eine Fehlermeldung.