VBA 中的字符串到日期时间 (Outlook)

发布于 2024-12-10 06:53:16 字数 316 浏览 0 评论 0原文

我从未使用过 VBA(或任何 Microsoft 开发产品),但是,我正在敲定一些脚本来使 Outlook 变得更好。

任何人,给定一个日期/时间字符串,例如:

Sunday, October 16, 2011 11:59:00 PM EDT

如何有效地将其解析为 DateTime 对象,以便与 Outlook.TaskItem 一起使用(它需要一个DueDate 成员的 DateTime

I never work with VBA (or really any Microsoft development products) however, I'm hammering out a few scripts to make Outlook better.

Anywho, given a date/time string such as:

Sunday, October 16, 2011 11:59:00 PM EDT

How could I effectively parse this into a DateTime object, for use with an Outlook.TaskItem (which takes a DateTime for the DueDate member)

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

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

发布评论

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

评论(1

仲春光 2024-12-17 06:53:16

您可以使用 IsDate 检查字符串是否可转换为日期(在用户区域设置中),然后使用 CDate 进行转换。

You can use IsDate to check if a string is convertible to a date (in the users locale), and then use CDate to convert it.

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