.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: QueryClose event
This QueryClose event verifies that the user wants to close the view.

(Globals) (Declarations)
%INCLUDE "lsconst.lss"

Sub Queryclose(Source As Notesuiview, Continue As Variant)
 If Messagebox ("Do you really want to close the view?", _
 MB_YESNO + MB_ICONQUESTION, _
 "OK to close?") = IDYES Then
   Continue = True
 Else
   Continue = False
 End If
End Sub

See Also