Domino Code Fragment

Code Name*
How to Delete Profile Documents
Date*
05/14/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.23.86.219
Description*
he only way to delete a profile document we've been able to find is to use the remove method in the NotesDocument class.
Type*
LotusScript
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:

Dim doc As NotesDocument
set doc = db.GetProfileDocument( "MyProfile" )
Call doc.Remove( true )