Hi,
I want to count the Full Names (not all documents) from "names.nsf" files. right now I'm doing this
So I got count of all documents. I Just want the number of "Full Names" in the People View. PLEASE HELP!!!
Thanks
I want to count the Full Names (not all documents) from "names.nsf" files. right now I'm doing this
Code:
Dim domSession As New Domino.NotesSession
Dim domDatabase As New Domino.NotesDatabase
Dim domCollection As New Domino.NotesDocumentCollection
Set domDatabase = domSession.GetDatabase("myServer", _
"names.nsf")
Set domView = domDatabase.GetView("People")
Set domCollection = domDatabase.AllDocuments
docCount = domCollection.count
So I got count of all documents. I Just want the number of "Full Names" in the People View. PLEASE HELP!!!
Thanks