一番上にボタンがあるビューがありますDelete
選択したすべてのドキュメントをビューから削除したい。このために私は使用しました:
Dim session As New NotesSession
Dim workspace As New NotesUIWorkspace
Dim database As NotesDatabase
Dim documentCollection As NotesDocumentCollection
Set database=session.CurrentDatabase
Set documentCollection=database.UnprocessedDocuments
If documentCollection.Count=0 Then
Msgbox "No documents selected ",,"warning"
Else
userChoice=Msgbox ("Delete" & Cstr(documentCollection.Count) & " documents?",64+100, _
"Confirm...")
If userChoice=6 Then
Call documentCollection.RemoveAll(True)
Call workspace.ViewRefresh
End if
しかし、ドキュメント内のテキスト フィールドのValue = YES
場所を示す一部のドキュメント (選択したすべてのドキュメントから、ビューから) のみを削除したい場合はどうすればよいでしょうか?Value
私は宣言しようとしました:
Dim ui As NotesUIDocument
Dim doc As NotesDocument
Set doc=ui.document
しかし、次のメッセージが表示されますObject variable not set
。つまり、NotesDocumentCollection を使用して文書を参照する必要があるのでしょうか? どのように?
御時間ありがとうございます!