如何在outlook vba中保留一些值
作为我正在做的事情的一部分,即使在 Outlook 会话关闭后,我也需要访问变量。有什么办法可以让价值持久化吗?
As part of what I am doing I need to access variables even after the session with the Outlook is closed. Is there any way to persist value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不是 Outlook 插件专家,但我认为您可以以任何您喜欢的方式保存值:数据库、文本文件、二进制文件等。
或者您这样做有严格的安全限制吗?
I'm not an expert of outlook plugins, but I think you can persist values in whatever ways you prefer: to database, text files, binary files etc.
Or do you have strict security restriction to do so?
我能想到的唯一方法是使用cookie之类的东西,请参阅此以获取更多信息:
The only way i can think of is to use something like cookies, see this for more info:
使用
Namespace.GetDefaultFolder
打开您知道始终存在的默认文件夹之一(例如收件箱),然后使用MAPIFolder.GetStorage
- 请参阅 https://msdn.microsoft.com/en-us/library/bb623414.aspx 为例。Open one of the default folder you know will always exist (e.g. Inbox) using
Namespace.GetDefaultFolder
, then useMAPIFolder.GetStorage
- see https://msdn.microsoft.com/en-us/library/bb623414.aspx for an example.