如何以编程方式打开新的 Live Meeting 窗口

发布于 2024-09-14 03:40:42 字数 150 浏览 1 评论 0原文

我目前正在开发 MS Outlook 2007 的加载项。我需要以编程方式打开一个新的实时会议(会议请求)窗口。这与 new-> 时执行的操作完全相同。单击实时会议按钮。是否有可能触发“Live Meeting”命令栏按钮的单击事件?请帮忙,因为我是办公室编程的新手。 提前致谢。

I am currently engaged in developing a add-in for MS outlook 2007. I need to open a new Live meeting(conferencing request) window programmatically. This is exactly same as the action performed when the new-> Live meeting button is clicked. Is there any possibility to fire the click event of the "Live Meeting" command bar button? Please help as I am new to office programming.
Thanks in advance.

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

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

发布评论

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

评论(1

很糊涂小朋友 2024-09-21 03:40:42

我已经找到了这个问题的解决方案,并且随着项目的进行,我学到了很多关于办公室编程的知识。实际上我们不能直接执行实时会议按钮。 Outlook 没有用于会议添加的 API。 Live会议对应outlook编程中的ApoinmentItem。因此,我们必须使用 com 对象模型来打开一个新的 AppoinmentItem,并在其正文中填充有关实时会议(实际上是 Microsoft Office 通信服务器上的会议)的适当详细信息。

我们必须使用微软UCMA sdk在OCS上创建一个新的会议。虽然有很多 sdk 可以用于 ocs 编程,但 ucma 是最好的 sdk。

参考此内容在 Outlook 上创建新约会

有关 UCMA 2.0 的研究

I've found the solution for this question and learnt a lot about office programming as the project goes on. Actually we cant execute the live meeting button directly. There is no api for conferencing add in for outlook. Live meeting corresponds to the AppoinmentItem in outlook programming. So we have to use com object model to open a new AppoinmentItem and fill the body of it with appropriate details about the live meeting(actually a conference on microsoft office communications server).

We have to use the microsoft UCMA sdk to create a new confernce on OCS. Although there are many sdks available to program for ocs, ucma is the best sdk.

Refer this to create new appoinment on outlook

Study about UCMA 2.0

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