如何运行我在 Outlook 中创建的表单

发布于 2024-09-13 15:58:29 字数 78 浏览 5 评论 0原文

我创建了一个表单来在 Outlook 中自动执行任务,我如何运行该表单,就像希望它作为可执行文件或桌面上的图标一样,单击该表单即可运行我的表单

i have created a form to automate a task in outlook how i run the form like if want it as executable or icon on the desktop which on clicking will run my form

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

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

发布评论

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

评论(1

蓝颜夕 2024-09-20 15:58:29

假设我的用户表单名称是 userform1

,然后我从宏中调用我的表单 -

sub monitorbox()
    userform1.show
end sub  

将此宏作为按钮添加到我的 Outlook 工具栏

现在我通过转到工具 | 。定制|命令选项卡

转到宏,然后拖动到工具栏,

就完成了。

lets say my userform name is userform1

then i call my form from my macro-

sub monitorbox()
    userform1.show
end sub  

now i add this macro as button to my outlook tool bar by

going to tools | customize | command tab

go to macro and then drag to tool bar

that is it u r done.

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