Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
FIELD name:=@deletefield
Dim session As New NotesSession
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim view As NotesView
Dim docEcran As NotesDocument
'crée un doc vide
Dim db As NotesDatabase
Dim CRPublique As NotesDocument
Dim itemA As NotesItem
Dim itemB As NotesItem
Dim itemC As NotesItem
Set uidoc = workspace.CurrentDocument
Set docEcran = uidoc.document
Set db = session.currentDatabase
Set CRPublique = New NotesDocument(db)
Set CRPublique = docEcran.CopyToDatabase(db)
Call CRPublique.removeitem("Body")
Call CRPublique.save(True, False, True)
Call uidoc.Close