Jeffrey R. Powell 23.Feb.11 09:32 AM a Web browser Domino DesignerAll ReleasesWindows 2000
I would like to capture the delete-key / F9 event so that I can synchronize with an external cross reference table.
My problem is that my QueryDocumentDelete event script is never called.
Is there any property setting that needs to be set or cleared to allow this event to fire?
When I mark for deletion (del key) then press F9 I get the standard Notes Dialog and then the document disappears. The script is never called.
Even this simple code does not work.
TIA
Dim flag As Integer
Sub Querydocumentdelete(Source As Notesuidatabase, Continue As Variant)
_____ flag=Msgbox("I'm here", 20, "Confirm")
_____ If flag = 7 Then
_____ _____ Continue = False
_____ End If
End Sub