C# Get running Outlook instance in VSTO add-in

◇◆丶佛笑我妖孽 提交于 2019-12-12 04:47:45

问题


I am trying to get an Outlook Application object in my add-in for Excel.

If there's a running Outlook instance, it should get that, if there isn't any, it should create one, using the Outlook object model.

This is the code I have right now:

public static Outlook.Application GetApplicationObject()
{
    Outlook.Application application = null;

    if (Process.GetProcessesByName("OUTLOOK").Count() > 0)
    {
        application = Marshal.GetActiveObject("Outlook.Application") as Outlook.Application;
    }
    else
    {
        application = new Outlook.Application();
    }
    return application;
}

My problem: it finds Outlook processes, but can't get them, throwing the following error message:

Operation unavailable (Exception from HRESULT: 0x800401E3 (MK_E_UNAVAILABLE))

I tried debugging it step by step, and monitored the task manager. I could see that I have an Outlook instance, but it's only an icon in the right side of the taskbar. Does this mean, that the instance is not fully loaded yet, and it can't be accessed, to get the Application object from it?

I ended up modifying my code, and separating the if-else into 2 try-catches, with their own returns, but I still think that the code above should be usable.


回答1:


Outlook is a singleton, so new Outlook.Application() will always work - if it is already running, you will get that running object.

Make sure both apps (Excel and Outlook) are running in the same security context. Is either app running with elevated privileges (Run As Administrator)?



来源:https://stackoverflow.com/questions/46487050/c-sharp-get-running-outlook-instance-in-vsto-add-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!