Outlook 2010 세션 관련 메시지 스트리밍
2694 단어 out
기본 코드:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Tools.Ribbon;
using Outlook = Microsoft.Office.Interop.Outlook;
namespace GetConversationMails
{
public partial class Ribbon1
{
private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
{
}
private void button1_Click(object sender, RibbonControlEventArgs e)
{
Outlook.Application objApplication = Globals.ThisAddIn.Application;
Outlook.Explorer objExplorer = objApplication.ActiveExplorer();
for (int i = 0; i <= objExplorer.Selection.Count; i++)
{
if (i > 0)
{
var obj = objExplorer.Selection[i];
if (obj is Outlook.MailItem)
{
Outlook.MailItem objMailItem = (Outlook.MailItem)obj;
Outlook.Conversation objConversation = objMailItem.GetConversation();
Outlook.SimpleItems objRootItems = objConversation.GetRootItems();
objExplorer.ClearSelection();
foreach (var Element1 in objRootItems)
{
if (Element1 is Outlook.MailItem)
{
Outlook.MailItem objRootItem = (Outlook.MailItem)Element1;
// 。 Inspector 。
objRootItem.Display();
Outlook.SimpleItems objChildrenItem = objConversation.GetChildren(objRootItem);
foreach (var Element2 in objChildrenItem)
{
if (Element2 is Outlook.MailItem)
{
Outlook.MailItem objChildItem = (Outlook.MailItem)Element2;
// , Inspector 。
objChildItem.Display();
}
}
}
}
}
}
}
}
}
}
관련 자료 다운로드:http://download.csdn.net/detail/tx_officedev/3853114
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Outlook 2010 세션 관련 메시지 스트리밍이 예는 C#, Visual Studio 2010을 사용하여 개발되었고 Outlook 2010을 기반으로 한 응용 프로그램입니다.메일을 선택하고 리본에서 단추를 누르면 이 세션과 관련된 메일이 열립니다. 기본 코드:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.