.

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: PostModeChange event
This script appends text to the ProblemHistory field every time the user switches from Read to Edit mode in the current document.

Sub Postmodechange(Source As Notesuidocument)
 Dim dateTime As New NotesDateTime( "Today" )
 If source.EditMode Then
   Call source.FieldAppendText _
   ( "ProblemHistory", _
   "Problem edited on " & dateTime.LocalTime )
 End If    
End Sub

See Also