hi,
 
i want to save a Birthday as AllDayEvent := .T. in Outlook Calender.
while RecurrenceState Property is writeprotect i use this Code
 
//  RecurrenceState is writeprotect !
// ::oItem:RecurrenceState := nRECURREN

IF lALLDAY = .T. .AND. nRECURREN = 1
   myRecurrPatt := ::oItem:GetRecurrencePattern
   myRecurrPatt:RecurrenceType   := olRecursYearly
   myRecurrPatt:PatternStartDate := DTOS( dSTARTDATE ) + cSTARTTIME
   myRecurrPatt:NoEndDate        := .T.
ENDIF
::oItem:save()
 
now my Item appear in Outlook Calender Allday Area.
 
when using Outlook Contact Birthday Propery i also get a Item
so now i have 2 Item like this
 
 
 
what is the right Way for a Birthday in Outlook ?
 
greetings by OHR
Jimmy