使用@ViewTitle 和 NSFSearch 的例子?
Example of using @ViewTitle with NSFSearch?
我昨天一整天都在尝试让 NSFSearch 与@ViewTitle 一起工作,但我想不通。文档是这样说的:
ViewTitle - The address of a null-terminated string that contains a
view name. If the selection formula specified by the 2nd argument
(hFormula) contains the @ViewTitle function, then Domino or Notes uses
the view name specified by this argument (ViewTitle) to resolve this
@ViewTitle function.
If the selection formula specified by the 2nd argument (hFormula) does
not contain the @ViewTitle function, or if you are not using a the
selection formula (hFormula is NULLHANDLE), then set this argument
(ViewTitle) to NULL.
但是我在任何地方都找不到一个这样的例子,也不能让它与像这样的选择公式一起工作:
@ViewTitle = "Test Folder" & @Created < @Date(2021;1;1)
@ViewTitle & @Created < @Date(2021;1;1)
如能提供正确方向的示例或指示,我们将不胜感激。
我从来没有找到使用这个的理由,但我一直将它解释为意味着你可以编译一个像“DocType = @ViewTitle
”这样的选择公式。然后你可以调用 NSFSearch
三次,一次使用“Draft”作为第二个参数,一次使用“In Progress”作为第二个参数,一次使用“Final”作为第二个参数。编译后的公式第一次调用时运行为DocType = "Draft"
,第二次调用时为DocType = "In Progress"
,第三次调用时为docType = "Final"
。你得到三个结果,就好像你在搜索三个不同的视图,但你只需要调用一个 NSFFormulaCompile
三 NSFSearch
个调用
我昨天一整天都在尝试让 NSFSearch 与@ViewTitle 一起工作,但我想不通。文档是这样说的:
ViewTitle - The address of a null-terminated string that contains a view name. If the selection formula specified by the 2nd argument (hFormula) contains the @ViewTitle function, then Domino or Notes uses the view name specified by this argument (ViewTitle) to resolve this @ViewTitle function.
If the selection formula specified by the 2nd argument (hFormula) does not contain the @ViewTitle function, or if you are not using a the selection formula (hFormula is NULLHANDLE), then set this argument (ViewTitle) to NULL.
但是我在任何地方都找不到一个这样的例子,也不能让它与像这样的选择公式一起工作:
@ViewTitle = "Test Folder" & @Created < @Date(2021;1;1)
@ViewTitle & @Created < @Date(2021;1;1)
如能提供正确方向的示例或指示,我们将不胜感激。
我从来没有找到使用这个的理由,但我一直将它解释为意味着你可以编译一个像“DocType = @ViewTitle
”这样的选择公式。然后你可以调用 NSFSearch
三次,一次使用“Draft”作为第二个参数,一次使用“In Progress”作为第二个参数,一次使用“Final”作为第二个参数。编译后的公式第一次调用时运行为DocType = "Draft"
,第二次调用时为DocType = "In Progress"
,第三次调用时为docType = "Final"
。你得到三个结果,就好像你在搜索三个不同的视图,但你只需要调用一个 NSFFormulaCompile
三 NSFSearch
个调用