在 LotusScript 上单击按钮事件时显示文件输入?

Show file input when click button event on LotusScript?

我正在使用 Lotus Domino。当我阅读 xml 文件时,我想单击一个按钮,它会显示一个表单让我 select 文件:

Sub Click(Source As Button)
 //How to file input form display here
End Sub

还有一个problem.I读取xml文件,输出数据为文档:

Dim reader As New XmlNodeReader
Call reader.ReadFile(datas)
documents = reader.getNodeReaders("egov.document ")
Forall document In documents
 //How to display list document for my form
End Forall

请在最短的时间内帮助我time.Thanks所有!!!!

要显示允许您 select 文件的对话框,请使用 Prompt method of the NotesUIWorkspace class。

您的问题的其余部分需要了解您正在使用的特定 XML 架构。