Hello,
I can create an appointment item with start date/time and duration.
; Create an appointment and set some properties
$oItem = _OL_ItemCreate($oOL, $olAppointmentItem, "*\Kalender", "", "Subject=HomeOffice " & @UserName & ": " & GUICtrlRead($InputWhy), "Start=" & GUICtrlRead($MonthCal) & " " & GUICtrlRead($InputBeginHO), "Duration=480", "MeetingStatus=1")
This works perfect. But now I have to create an all day appointment item.
Can I create an all-day appointment item with OutlookEx-UDF? How do I do this? I searched the files OutlookEx.au3 and OutlookExConstants.au3, but I didn't find anything that would help me to do so.
Thanks in Advance,
Guido
I found the solution while trying the last time:
you have to add another parameter/value called AllDayEvent=1!!!
$oItem = _OL_ItemCreate($oOL, $olAppointmentItem, "*\Kalender", "", "Subject=HomeOffice " & @UserName & ": " & GUICtrlRead($InputGrund) & "/" & GUICtrlRead($InputBeginHO), "Start=" & GUICtrlRead($MonthCal) , "", "MeetingStatus=1", "AllDayEvent=1")