Outlook隐私会议弹出 [英] Outlook privacy meeting pop up

查看:93
本文介绍了Outlook隐私会议弹出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当您发送会议邀请时,是否有办法创建弹出窗口请求"您是否将此会议标记为私人?"

Is there a way to create a pop-up when you send a meeting invite that asks "Did you mark this meeting as private?"

推荐答案

嗨Kyliemc,

Hi Kyliemc,

>>有没有办法在发送会议邀请时创建弹出窗口,询问"您是否将此会议标记为私有?"

>> Is there a way to create a pop-up when you send a meeting invite that asks "Did you mark this meeting as private?"

是的,您可以在Application_ItemSend中实现此功能事件。

Yes, you could achieve this function in Application_ItemSend event.

这是一个简单的代码:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) If Item.Class = 53 Then Dim prompt As String prompt = "Did you mark this meeting as private?" If MsgBox(prompt, vbYesNo + vbQuestion, "Warning") = vbNo Then Cancel = True End If

结束如果
结束Sub

End If End Sub

最好的问候,

Edward


这篇关于Outlook隐私会议弹出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆