How to access the outlook Address Book
C#
3
Posts
2
Posters
0
Views
1
Watching
-
Hi Its very urgent . Can anyone help me in this problem?? I AM ABLE TO DO ALL THE OPERATIONS WITH OUTLOOK EXCEPT READING THE ADDRESS BOOK... PLZ HELP ME .. Thanks in advance Akhil:confused:
-
Thanks Robert for ur instant reply... it helped me to some extend .. but i needed to access global address book.. i got it .. by the following code int s=oNameSpace.AddressLists.Item(1).AddressEntries.Count; for(int i=1;i<=s;i++) { lb.Items.Add(oNameSpace.AddressLists.Item(1).AddressEntries.Item(i).Name); } Thanks Again