Dear All,
I have used front-end methods in order to opened a new appointment.
Dim uiw As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = uiw.ComposeDocument( myservername, mydbname, “Appointment” )
Call uidoc.FieldSetText(“Subject”, “New Meeting”)
Call uidoc.FieldSetText(“Location”, “Room 1234”)
Call uidoc.FieldSetText(“Body”, “Here is the body”)
All works fine except with the appointment body.
Indeed, the body field is filled with “Here is the body” but when clicking inside the body to modify it, all its content is automatically removed.
Please note that “Here is the body” body value, before being removed, is written in light and marroon font.
Do you know why? How can I prevent from removing the content of the body?
Endly, a requirement of my application is to open a new “not already saved” document.
Thanks in advance for your help,
Mikaël Donini,
Arkadin France.