如何开发MS Outlook插件在VS 2010中? [英] How to develop MS Outlook plug-in in VS 2010?

查看:118
本文介绍了如何开发MS Outlook插件在VS 2010中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何一个可以给我一些很好的参考或教程链接制定与Visual Studio前景插件。

Can any one give me some good reference or tutorial links to develop plugin for outlook with visual studio.

推荐答案

可以。很容易地创建一个VSTO(Visual Studio工具用于Office)加载项为Microsoft Outlook

You can easily create a VSTO(Visual Studio Tools for Office) add-in for Microsoft Outlook.

我会使用Office和Visual Studio 2010为例子:

I'll use Office and Visual Studio 2010 as example:

在Visual Studio中:

In Visual Studio:

选择文件 - >新建项目 - >办公 - >展望2010年添加在

Select File -> New Project -> Office -> Outlook 2010 Add In

改为如下ThisAddIn_Startup:

Replace ThisAddIn_Startup with the following:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
    {
        System.Windows.Forms.MessageBox.Show("Outlook starting up...");
    }



运行该应用程序将启动Outlook中显示信息。

Running the application will launch Outlook displaying the message.

现在你已经知道如何创建一个新的添加项目看看以下资源:

Now that you know how to create a new add in project have a look at these resources:

1)的Outlook开发视频中心

2)的展望开发商 - 这个MSDN页面是专门到Microsoft Office Outlook开发商和包含数百个例子,我相信你会找到的文章在本网站的例子非常有益的,就像你在您的文章中提到,如果你卡住的地方你总是可以在这里发布问题上左右。

2) Outlook for developers - This MSDN page is dedicated to Microsoft Office Outlook developers and contains hundreds of examples, I believe you'll find the articles and examples on this site very helpful and like you've mentioned in your post if you get stuck somewhere you can always post a question here on SO.

这篇关于如何开发MS Outlook插件在VS 2010中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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