用clausole“instr”限制展望和VB

发布于 2024-11-01 11:10:26 字数 372 浏览 1 评论 0原文

Set olItm = olFld.Items.Restrict("[SenderName]='[email protected]'")

是否可以使用我需要通过子句插入来限制主题的发件人姓名?

示例:

Set olItm = olFld.Items.Restrict("[Subject]=instr("test")")

我使用了上面的行,但有错误! 谢了。

Set olItm = olFld.Items.Restrict("[SenderName]='[email protected]'")

Is possible instead to use the sendername i need to restrict by subbject with a clausole insrt?

Example:

Set olItm = olFld.Items.Restrict("[Subject]=instr("test")")

i have used the line above but have error!
Tks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

划一舟意中人 2024-11-08 11:10:26

使用字符串比较过滤项目

criteria = "@SQL=" & Chr(34) _
         & "urn:schemas:httpmail:subject" & Chr(34) _
         & " like '%test%'"
Set olItm = olFld.Items.Restrict(criteria)

Filtering Items Using a String Comparison:

criteria = "@SQL=" & Chr(34) _
         & "urn:schemas:httpmail:subject" & Chr(34) _
         & " like '%test%'"
Set olItm = olFld.Items.Restrict(criteria)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文