有没有办法使用公式编码自动回答对话框?
Is there a way to automatically answer a dialog box using formula coding?
有没有办法使用公式编码自动回答对话框?在 IBM 笔记多米诺骨牌中 - 我想在按钮后面有一些公式代码来自动回答对话框。这可能吗?
避免 "would you like to save?" 对话框。
在您更改按钮中的所有字段后保存您的文档。
@Command([EditDocument]; 1);
FIELD Counter := Counter + 1;
@PostedCommand([FileSave]);
@PostedCommand([EditDocument]; 0);
您真的必须重写您不清楚的问题!
您的新评论的回复是:
在您的代码中添加:FIELD SAVEOPTIONS:="0"
如果您希望在不保存的情况下自动关闭文档(寻找 SaveOptions 的其他选项)
如果您有 Lotus 脚本代码,请查看 The third SaveOptions value, or How to suppress the "Do you want to save this document?" message box in Notes
有没有办法使用公式编码自动回答对话框?在 IBM 笔记多米诺骨牌中 - 我想在按钮后面有一些公式代码来自动回答对话框。这可能吗?
避免 "would you like to save?" 对话框。
在您更改按钮中的所有字段后保存您的文档。
@Command([EditDocument]; 1);
FIELD Counter := Counter + 1;
@PostedCommand([FileSave]);
@PostedCommand([EditDocument]; 0);
您真的必须重写您不清楚的问题!
您的新评论的回复是:
在您的代码中添加:FIELD SAVEOPTIONS:="0"
如果您希望在不保存的情况下自动关闭文档(寻找 SaveOptions 的其他选项)
如果您有 Lotus 脚本代码,请查看 The third SaveOptions value, or How to suppress the "Do you want to save this document?" message box in Notes