bug with .NET/Redemeption while accessing Redemption Recipients colln in .NET - pls clarify

  • Thread starter Thread starter Anushya
  • Start date Start date
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
 
Hi
it works fine. thankssss Dmitryyy
Anushya
Dmitry Streblechenko \(MVP\) said:
See my reply to your previous post

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


Anushya said:
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
 
Back
Top