Examples: Sign method (NotesDatabase - LotusScript®)

This agent signs the forms in the current database.

Sub Initialize
  Dim session As New Notessession
  Dim db As Notesdatabase
  Set db = session.Currentdatabase
  Call db.sign(DBSIGN_DOC_FORM)
End Sub