プログラムで Outlook の FROM フィールドを表示/非表示にする方法はありますか?
これを行う理由は、これまでに作成したコードの一部が FROM フィールドを正常に設定したためです。
ただし、最初の実行後に FROM フィールドが設定されますが、UI にはこの変更が反映されません。
FROM フィールドを非表示にしてから再表示すると、UI が強制的に更新されます。理想的には、2007 年と 2010 年の両方でこれを行う方法を見つけたいと考えています。
プログラムで FROM フィールドを非表示にして再表示できない場合、UI を強制的に更新する他の方法はありますか?
//Get the explorer window and the currently selected item
Explorer activeExplorer = this.Application.ActiveExplorer();
MailItem origMsg = activeExplorer.Selection[1];
Recipients origRecipients = origMsg.Recipients;
if (origRecipients.Count == 1)
{
AddressEntry address = origRecipients[1].AddressEntry;
currentMsg.Sender = address;
//currentMsg.SentOnBehalfOfName = origRecipients[1].Name; currentMsg.send
}