S
Sayonara
Люди, подскажите пожалуйсто, как можно отобрать ВСЕ записи в папки
При
ругается, не нравится ключь отбора.
а при
выбирает вообще все документы, а мне необходимо именно те, что лежат в отдельной viwe (folder)....
При
Код:
dim wks as New notesuiworckspace
dim db as notesdatebase
dim dc as notesdocumentcollection
dim doc as notesdocument
dim view as notesview
set db = wks.currentDatebase.Datebase
Set view=db.GetView("sort")
Set dc=view.GetAllDocumentsByKey("",True)
Set doc = dc.GetFirstDocument
а при
Код:
dim wks as New notesuiworkspace
dim db as notesdatebase
dim dc as notesdocumentcollection
dim doc as notesdocument
set db = wks.currentDatebase.Datebase
Set dc=db.AllDocuments
Set doc = dc.GetFirstDocument
выбирает вообще все документы, а мне необходимо именно те, что лежат в отдельной viwe (folder)....