RE: Not without using an agent to mark the documents in some way, no. lathan reddy 14.Feb.12 09:40 AM a Web browser Domino Designer 6.5.2Windows XP
Hi Rich/Carl,
Thanks for your good response ,i have wrritten code for to filter duplicate document in a folder as below
Dim session As New NotesSession
Dim db As NotesDatabase
Set db=session.CurrentDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim BankIDs List As String
Set view = db.GetView( "x" )
Set doc = view.GetFirstDocument
While Not ( doc Is Nothing )
Set doc = view.GetNextDocument( doc )
If Not Iselement(BankIDs(doc.BankId(0))) Then
BankIDs(doc.BankID(0)=doc.UniversalID)
Else
doc.putInFolder("Duplicates")
End If
Wend
But is not exeguting the code ,Please correct me where i did wrong in the code ,Pls...Thanks for your great help.