Domino Code Fragment

Code Name*
How to Delete Profile Documents
Date*
04/29/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.15.221.67
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 )