A
Anushya
Hi
Recipients collection is not working properly in .NET.
dont know whether the bug is with redemption/NET.
Even when i loop thru it displays the first address every time.
for(int intK=0;intK<rMailItem.Recipients.Count;intK++)
{
MessageBox.Show(rMailItem.Recipients[intK].Type.ToString());
MessageBox.Show(rMailItem.Recipients[intK].Address.ToString());
MessageBox.Show(rMailItem.Recipients[intK].Class.ToString());
}
Anushya
Recipients collection is not working properly in .NET.
dont know whether the bug is with redemption/NET.
Even when i loop thru it displays the first address every time.
for(int intK=0;intK<rMailItem.Recipients.Count;intK++)
{
MessageBox.Show(rMailItem.Recipients[intK].Type.ToString());
MessageBox.Show(rMailItem.Recipients[intK].Address.ToString());
MessageBox.Show(rMailItem.Recipients[intK].Class.ToString());
}
Anushya