[Message Deleted]
Mobile
3
Posts
3
Posters
2
Views
1
Watching
-
-
HIi THOBANI, CHECK THIS CODE
private string FindContacts()
{
OutlookSession osSession = new OutlookSession();
int iCnt = 0;
string strName = null;
if (osSession.Contacts.Items.Count > 0)
{
while (iCnt < osSession.Contacts.Items.Count)
{
if (strName == null)
{
strName = osSession.Contacts.Items[iCnt].FirstName.ToString();
}
else
{
strName += "," + osSession.Contacts.Items[iCnt].FirstName.ToString();
}iCnt++; } } return strName; }
Hope that this may be help.
Pavan Pareta