我想在c#.net應用程序中檢索我的outlook聯繫人。 但是,在創建Outlook應用程序的對象,我收到錯誤'System.Runtime.InteropServices.COMException'
"AnswerWizard = '((Microsoft.Office.Interop.Outlook.ApplicationClass.(outlookObj)).AnswerWizard' threw an exception of type 'System.Runtime.InteropServices.COMException'"
我試着用revsvr32「DLL路徑」註冊DLL,但我正在逐漸模塊的誤差加載,但不是的DLLRegisterServer發現。
這是我寫的代碼:
DataSet ds = new DataSet();
ds.Tables.Add("Contacts");
ds.Tables[0].Columns.Add("Email ID");
ds.Tables[0].Columns.Add("FirstName");
ds.Tables[0].Columns.Add("LastName");
Microsoft.Office.Interop.Outlook.Items OutlookItems;
Microsoft.Office.Interop.Outlook.Application outlookObj;
MAPIFolder Folder_Contacts;
outlookObj = new Microsoft.Office.Interop.Outlook.Application();
Folder_Contacts =(MAPIFolder)outlookObj.Session.GetDefaultFolder (OlDefaultFolders.olFolderContacts);
OutlookItems = Folder_Contacts.Items;
for (int i = 0; i < OutlookItems.Count; i++)
{
Microsoft.Office.Interop.Outlook.ContactItem contact =(Microsoft.Office.Interop.Outlook.ContactItem)OutlookItems[i + 1];
DataRow dr = ds.Tables[0].NewRow();
dr[0] = contact.Email1Address;
dr[1] = contact.FirstName;
dr[2] = contact.LastName;
ds.Tables[0].Rows.Add(dr);
if (i == 10)
break;
}
dgvContacts.DataSource = ds.Tables[0];
return ds;
而且我得到的計數爲零。
這是一個非常普遍的例外,你應該發佈它從 –