access contact-list using .net

  • Thread starter Thread starter uiranejeb
  • Start date Start date
U

uiranejeb

I am afraid that you don't any solution than using the old com library:

using Microsoft.Office;
using Microsoft.Office.Core;
....
Outlook.Application app = new Outlook.Application();
Outlook.NameSpace ns = app.GetNamespace("MAPI");
Outlook.MAPIFolder folder =
ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);
//do what you want with folder.Items

hope it helps,
uiranajeb (MCSD)
 
can i import customed information into the cantact list in microsoft outlook
and outlook express?
and i want to create group

does .net support it?

regards.
 
Back
Top