0

我正在编写一个加载项,当通过“数据文件管理”菜单或通过 AddStore/RemoveStore 添加/删除 PST 时需要记录该加载项。我一直很难找到有关如何捕获这些事件的文档。

非常感谢您的建议。

谢谢,拉里

编辑:这是我的无效代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Outlook = Microsoft.Office.Interop.Outlook;
using Office = Microsoft.Office.Core;
using System.Windows.Forms;

namespace StoreTesting
{
    public partial class ThisAddIn
    {
        Outlook.Application olApp = new Outlook.ApplicationClass();
        Outlook.NameSpace ns;

        Outlook.Stores stores;
        int open;

        private void ThisAddIn_Startup(object sender, System.EventArgs e)
        {
            ns = olApp.GetNamespace("MAPI");


            stores = ns.Stores;
            open = 0;

            foreach (Outlook.MAPIFolder mf in stores.Session.Folders)
                if (mf.Store.IsDataFileStore)
                    open += 1;

            stores.StoreAdd += new Outlook.StoresEvents_12_StoreAddEventHandler(stores_StoreAdd);
            stores.BeforeStoreRemove += new Outlook.StoresEvents_12_BeforeStoreRemoveEventHandler(stores_BeforeStoreRemove);

        }

        void stores_BeforeStoreRemove(Outlook.Store Store, ref bool Cancel)
        {

            string rf = string.Format("{0}:{1} was removed", Store.DisplayName);
            MessageBox.Show(rf);
            open -= 1;
        }

        void stores_StoreAdd(Outlook.Store Store)
        {
            Outlook.MAPIFolder mf = ns.Folders.GetLast();
            string af = string.Format("{0} was added", mf.Name);
            MessageBox.Show(af);
            open += 1;
        }

        void ThisAddIn_Shutdown(object sender, System.EventArgs e)
        {
        }

        #region VSTO generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InternalStartup()
        {
            this.Startup += new System.EventHandler(ThisAddIn_Startup);
            this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
        }

        #endregion
    }
}
4

2 回答 2

0

像这样:

...

    private void ThisAddInStartup(object sender, EventArgs e)
    {
        this.Application.Session.Stores.StoreAdd += StoreAddEventHandler;
        this.Application.Session.Stores.BeforeStoreRemove += BeforeStoreRemove;
    }

    private void StoreAddEventHandler(Store store)
    {
        if (store.IsDataFileStore)
        {
          //Do something.
        }
    }

    private void BeforeStoreRemove(Store store, ref bool cancel)
    {
        if (store.IsDataFileStore)
        {
            //Do something.
        }
    }

...

于 2011-04-13T07:34:55.263 回答
0

Outlook会话对象有 2 个用于添加和删除 pststore 的事件 -

  1. 商店添加
  2. 之前存储删除

您可以订阅这些事件以在添加或删除任何 pst 时获取通知。

于 2010-10-15T09:59:40.350 回答