2015-06-10 61 views
0

我有一個非常簡單的Outlook表單區域。它被配置爲一個單獨的項目,並且它被設置爲在我們嘗試撰寫新的約會項目時出現。 (會議請求)。如何在Outlook中顯示錶單區域的預約頁面

enter image description here

當我點擊上面的按鈕,它應該填充發件人並返回到主預約頁面。要做到這一點的代碼是:

private void button1_Click(object sender, EventArgs e) 
    { 
     item.RequiredAttendees = "[email protected]"; 
     var exp = item.Application.ActiveInspector(); 
     if (exp == null) Debug.Print("NULL"); 
     else exp.ShowFormPage("Appointment"); 
    } 

但是這不起作用。這樣做的正確方法是什麼?

回答

相關問題