Dim session As New NotesSession Dim db As NotesDatabase Dim doc As NotesDocument Dim verifyName As String Set db = session.CurrentDatabase Set doc = New NotesDocument( db ) doc.Form = "Main Topic" doc.Subject = "A signed document" Call doc.Sign Call doc.Save( False, True ) verifyName = doc.Verifier
See Also