我正在使用以下代码在另一个表单的操作中创建文档:
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim NewItemDoc As NotesUIDocument
Dim ParentUNID As String
ParentUNID = ws.CurrentDocument.Document.UNID(0)
Set NewItemDoc = ws.ComposeDocument("","","Item")
Call NewItemDoc.Document.ReplaceItemValue("ParentUNID", ParentUNID)
End Sub
我在Item
表单QueryOpen
和PostOpen
事件处理程序中有代码,但是它们根本没有运行。当我使用时,@Command([Compose])
有人打电话。
在调试 lotusscript 时,它不会单步执行这些事件处理程序。
我如何在 lotusscript 中获得等价物?即我如何让QueryOpen
和PostOpen
事件触发?