如何在outlook vba中保留一些值

发布于 2024-09-13 16:07:18 字数 63 浏览 10 评论 0原文

作为我正在做的事情的一部分,即使在 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 技术交流群。

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

发布评论

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

评论(3

最好是你 2024-09-20 16:07:18

我不是 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?

開玄 2024-09-20 16:07:18

我能想到的唯一方法是使用cookie之类的东西,请参阅此以获取更多信息:

The only way i can think of is to use something like cookies, see this for more info:

阪姬 2024-09-20 16:07:18

使用 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 use MAPIFolder.GetStorage - see https://msdn.microsoft.com/en-us/library/bb623414.aspx for an example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文