如何使用 "FindNotesMetadata" 下载具有特定标题的笔记
How to download a note with a specific title using "FindNotesMetadata"
i want to download a note with a title,for example,"170222". this is my code:
Dim myfilter As New NoteFilter
myfilter.Words("intitle:170222")
Dim myspc As NotesMetadataResultSpec
'?Specialized.
Dim myResultsList As NotesMetadataList = store.FindNotesMetadata(myfilter, 0, 500, myspc)
the error line:"myfilter.Words("intitle:170222")"
the error message:"属性访问必须分配给属性或使用属性值"
please help,thanks.
我笨,我惭愧!
这是一个非常简单的问题。
正确的代码是:
myfilter.Words="intitle:170222"
i want to download a note with a title,for example,"170222". this is my code:
Dim myfilter As New NoteFilter
myfilter.Words("intitle:170222")
Dim myspc As NotesMetadataResultSpec
'?Specialized.
Dim myResultsList As NotesMetadataList = store.FindNotesMetadata(myfilter, 0, 500, myspc)
the error line:"myfilter.Words("intitle:170222")" the error message:"属性访问必须分配给属性或使用属性值"
please help,thanks.
我笨,我惭愧! 这是一个非常简单的问题。 正确的代码是:
myfilter.Words="intitle:170222"