I programing in C# and i want to send appointment to lotus notes. It changes “appointment” into “memo” when i went to look details in lotus notes.
Is it possible that there is a wrong setup off server or client?
Code is folowing…
doc = db.CreateDocument();
doc.ReplaceItemValue("AppointmentType", "3");
doc.ReplaceItemValue("MeetingType", "1");
doc.ReplaceItemValue("Form", "Appointment");
NotesDateTime dt= ns.CreateDateTime(DateTime.Now.ToString());
doc.ReplaceItemValue("StartTime", "12:15:00");
doc.ReplaceItemValue("STARTDATETIME", "25.05.2007 12:15:00");
doc.ReplaceItemValue("StartDate", "25.05.2007");
doc.ReplaceItemValue("EndDate", "25.05.2007");
doc.ReplaceItemValue("EndTime", "13:15:00");
doc.ReplaceItemValue("EndDateTime", "25.05.2007 13:15:00");
doc.ReplaceItemValue("CalendarDateTime", "25.05.2007 12:15:00");
doc.ReplaceItemValue("Location", "place");
If any one knows where is the problem, please help me