Home > Domino Tips > Developer > Domino > Delete a collection of documents
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

DOMINO

Delete a collection of documents


Sirry Hboos
11.17.2003
Rating: -3.26- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


You will always have a problem when deleting a collection of documents. When a user executes a deletion agent on a collection of documents and if some of those documents were open or the user was not permitted (for any reason) to delete them, the user will get an error.

To prevent the error, you have several ways to exclude these documents, but you will always have the problem of setting the collection pointer to the correct position. By several trials, I found the most portable, handy and efficient way to avoid these problems.

Code

Sub DeleteDocuments
 Dim s As New NotesSession
 Dim db As NotesDatabase
 Dim dc As NotesDocumentCollection
 Dim doc As NotesDocument
 Dim ExecludedDocs() As NotesDocument
 Dim x As Long, y As Long, Cond As Boolean
 
 Set db = s.CurrentDatabase
 Set dc = db.UnprocessedDocuments
 
 REM Using GetFirstDocument and 
GetNextDocument methods
 REM are much faster when you have 
high number of documents
 y = 0
 Redim ExecludedDocs(y)
 Set doc = dc.GetFirstDocument
 For x = 1 To dc.Count
  Cond = True  'you set here the exclusion 
condition such as doc.IsUIDocOpen
 or Not doc.IsValid
  If Cond Then
   'add the execluded document to an 
array of documents
   Redim Preserve ExecludedDocs(y)
   Set ExecludedDocs(y) = doc
   y = y + 1
  End If
  
  'do any required processes here
  '
  '
  'you may not delete the document here,
 that makes the next doc not available.
  Set doc = dc.GetNextDocument(doc)
 Next
 
 If y > 0 Then 'we have excluded docs
  'Remove them from collection
  Forall exdoc In ExecludedDocs
   Set exdoc = dc.GetDocument(exdoc)
   Call dc.DeleteDocument(exdoc)
  End Forall
 End If
 
 'now remove the collection safely
 Print "deleting documents, please wait..."
 Call dc.RemoveAll(True)
 Print
End Sub

Do you have comments on this tip? Let us know.


Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Domino
Mimic Lotus Notes Domino application functionality on the Web
A single form to view and edit any Lotus Notes document
DECS and DCR external data access considerations
How to create non-scrolling Lotus Domino view headers on the Web
Disabling the 'Submit' button on a form
An easier way to update a rich text field
Results from Default Notes Search have # of responses in brackets
Lotus Notes/Domino veteran offers comprehensive list of app dev tools
Notes to XML. . .and back again
Creating thumbnail images using LS2J in LotusScript

Lotus Notes Domino Agents
Quickly scan all databases on a Lotus Domino server
How the Agent Profiler tool improves Notes/Domino performance
Run or restart Notes/Domino agents via text messages
Calculating results for a column in a Lotus Notes view
Approve Lotus Notes documents using a BlackBerry mobile device
LotusScript agent indexes Lotus Notes/Domino databases
Top 10 Lotus Notes/Domino coding and development tips of 2008
Open documents in Lotus Notes from the Web without a UNID
Fix and update Lotus Notes documents with limited access
Verify scheduled agent status with Domino Extensible Language (DXL)

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts