Stefan Specht 31.Mar.08 10:41 AM a Web browser Domino Designer6.5.5 FP2All Platforms
Hi!
I hope anybody can help me with this...i'm dispairing...
I want to get a datacollection conatining documents of the view MailRoutingEvents in the DB log.nsf. Not all documents, but all documents of a specific day (or time range)....
I tried this:
-----------------------------------------------------------
Set logdb = sess.GetDatabase(server(0),"log.nsf", False)
' get the view
Set logView = logdb.GetView("MailRoutingEvents")
Dim dc As NotesDocumentCollection
Dim keyArray (0 To 1) As Variant
keyArray(0) = ""
keyArray(1) = Cstr(Now())
Set dc = logView.GetAllDocumentsByKey (keyArray, True)
---------------------------------------------------------------
I always get 0 documents into the collection :(
The first column of the view is a empty one, called "name", the second is called "date" and contains the current date.....