VB.NET UnProcessedDocuments not working

Hi,

I am using the folloing code in desktop app using VB.NET 2.0 (VS.Net 2005)

        Dim Session As New Domino.NotesSession

        Dim NotesDBDir As Domino.NotesDbDirectory

        Dim MailDB As Domino.NotesDatabase

        Dim DocsColleciton As Domino.NotesDocumentCollection



        Dim UserName, MailDBName As String



        ''MailDBName = "mail\abk.nsf"

        Session.Initialize("dingdong")

        UserName = Session.UserName

        NotesDBDir = Session.GetDbDirectory("mail/netsol")

        MailDB = NotesDBDir.OpenDatabase("mail\adeelbinkhalid")

        ''NotesDBDir = new NotesDbDirectory(

        ''MailDB = Session.GetDatabase("", MailDBName, )

        DocsColleciton = MailDB.UnprocessedDocuments()

when DocsColleciton = MailDB.UnprocessedDocuments() is executed, it throws an exception “Not implemented”… what is the reason??? how can i check the unread mail?? or newly arrived email???

thanks.

Subject: VB.NET UnProcessedDocuments not working

Unprocesseddocuments is not implmeneted in COM so I’m guessing it’s not available to you. Have you looked at the Proposion driver? Maybe that will do what you want.