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 メソッドで返される順序を知ることは可能ですか?
ありがとう!