我想在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是数据库中文档中的日期项。
答案 0 :(得分:1)
试试吧
searchFormula5$ = {PaPeriodEnd < @Today & PaPeriodEnd > [10/10/2010] & PaStatus = Signed}