|
|
|
|
|
TaskAdd (Function) In french: TâcheAjoute Adds a task to the task list of a Lotus Notes or Outlook messaging. The Task structure is used to define the data of this task. Attention This function does not add a task to the task list of an Outlook Express mailbox.
IDSession is int
IDSession = EmailStartNotesSession("MotDePasse", "ServeurMars", "mail\julie.nsf", ...
"C:\Users\Julie\AppData\Local\Lotus\Notes\Data\user.id")
TaskReset()
mTask.Subject = "Nouvelle tâche"
mTask.StartDate = "20070125100000"
mTask.NbParticipant = 3
mTask.Participant[1] = "Romain"
mTask.Participant[2] = "Lucas"
mTask.Participant[3] = "Stéphane"
IF TaskAdd(IDSession) = True THEN
Info("Tâche ajoutée")
ELSE
Error("Erreur lors de l'ajout", ErrorInfo())
END
Syntax
<Result> = TaskAdd(<Session identifier>)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|