如何以编程方式打开新的 Live Meeting 窗口
我目前正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经找到了这个问题的解决方案,并且随着项目的进行,我学到了很多关于办公室编程的知识。实际上我们不能直接执行实时会议按钮。 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