Click here to Skip to main content
15,896,557 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
the code is here :

C#
RequestSettings logininfo = new RequestSettings("",textBox1 .Text ,textBox2 .Text);
logininfo.AutoPaging = true;
ContactsRequest crequest=new ContactsRequest(logininfo) ;
Feed<contact> feedcontacts = crequest.GetContacts();
foreach (Contact gmailAddresses in feedcontacts.Entries)
{
   Console.WriteLine("\t" + gmailAddresses.Title);
   listBox1.Items.Add(gmailAddresses.Title);
   foreach (EMail emailId in gmailAddresses.Emails) 
   {
      Console.WriteLine("\t" + emailId.Address);
      listBox1.Items.Add(" " + emailId.Address);
   }
}
Posted
Updated 18-Dec-11 2:38am
v4

How are we supposed to help you? None of the objects used are .net framework objects, so you must have gotten this code from an article or some other library. If it WAS a CodeProject article, go BACK to the article, and ask the question in the article forum area at the bottom of the page.
 
Share this answer
 
I answered this for you here: Please how can modify in this code display the signature of sender[^], yesterday. Please don't repost the same question. If you have more information to add then edit the original.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900