Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pretty Simple ... pl. help experts?

Status
Not open for further replies.

Technos

Programmer
Mar 15, 2002
47
US
Hi,
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top