我将一个操作按钮“更改为”,因此当某些用户按下此按钮时,我只需保存 Uidoc。我想删除这个文档,考虑到如果我不删除它,所有文档都将保存在 ALLdocument 视图中!
当我尝试删除文档(调用 doc.remove)时,我收到错误消息:“在 NotesUIDocument 实例化时无法删除 notesdocument”,所有这些都在文档的另一个操作按钮中。
另外,我想关闭 NotesDocument。我也尝试过类似的东西:
@Command([movetotrash]);
@Command([emptytrash]);
@Command([fileclosewindow]) but it doesn;t work. Thank you, Samir Akhtubir
我也这样尝试过:
Sub Queryclose(Source As Notesuidocument, Continue As Variant)
noteid$ = source.document.NoteID
Delete source
Dim S As New notessession
Dim db As notesdatabase
Set db = s. currentdatabase
Dim doc As Notesdocument
Set doc = db.GetDocumentbyID(noteid$)
Call doc.Remove(True)
End Sub
但是如果我把这段代码放到刚刚创建的文档中,所有的文档都会被删除。然后我放入了名为“取消”的操作按钮的 QueryClose 中,但它不起作用。
那么,如何删除当前文档并在操作按钮中关闭窗口?