如何在 NotesDatabase 的搜索方法中的搜索公式中使用 lotusscript NotesDateTime 对象?

How to use lotusscript NotesDateTime object in search formula in Search method of NotesDatabase?

我想在 NOtesDatabase 的搜索方法的搜索公式中使用 NotesDateTime 对象。下面是我的代码

Dim searchFormula5 As String
Dim modifiedAfter As New NotesDateTime("10/10/2010")
searchFormula5$= {PaPeriodEnd<@Today & PaPeriodEnd > modifiedAfter & PaStatus=Signed }  
Set collectionDocs=database1.Search(searchFormula5$,NOTHING,0)  

我无法在搜索公式中使用 modifiedAfter。 PaPeriodEnd 是数据库中文档中的日期项。

试一试 searchFormula5$ = {PaPeriodEnd < @Today & PaPeriodEnd > [10/10/2010] & PaStatus = Signed}