.

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: RegionDoubleClick event
This example displays the alias name of the view if the database designer double-clicks a date in the calendar.

Sub Regiondoubleclick(Source As Notesuiview)
 Dim s As New NotesSession
 Dim db As NotesDatabase
 Set db = s.CurrentDatabase
 If db.CurrentAccessLevel >= ACLLEVEL_DESIGNER Then
   Messagebox Source.ViewAlias, , "Alias name of this view"
 End If
End Sub

See Also