Bonjour,
Je n'ai jamais programmé d'événement sur le Drag & Drop, mais sachant que ça existe dans l'agenda, je serai tenté d'aller voir le code de ce côté pour s'en inspirer
La vue Calendar fait appel à un objet CalendarViewBroker définit dans la bibliothèque CSUIViewClass_fr-FR
On voit qu'ils passent par l'objet Source de type NotesUIView pour récupérer le doc sélectionné
[syntax="LotusScript"]Sub ViewDragPasteHandler(source As NotesUIView, Byval bDrag As Integer)
...
Set collection = source.documents
' if they are trying to drag and drop more than 1 document - stop
If (collection.count > 1) And (bDrag = True) Then
Msgbox "Impossible de glisser-déplacer plusieurs documents à la fois pour la replanification.",,"Erreur"
Goto CancelOp
End If
Set note = collection.getfirstdocument
If (note Is Nothing) Then Exit Sub
...[/syntax]