我正在维护一个处理来自 Lotus Notes 数据库的消息的旧版 VB6 应用程序。从 NotesDatabase 的一个实例中,我们获得了一个 NotesDocumentCollection 并因此遍历消息:
Set domCollection = domDatabase.AllDocuments
Set domDocument = domCollection.GetFirstDocument
'Do something with domDocument
Set domDocument = domCollection.GetNextDocument
'Continue until no more documents
我的问题:是否有可能知道使用 GetFirstDocument 和 GetNextDocument 方法返回文档的顺序是什么?
谢谢!