Contact.ItemID

  • Thread starter Thread starter Karsten Baumann
  • Start date Start date
K

Karsten Baumann

Hello NG,

I have a ItemID from a contact and want to show this contact. I cant find a
solution, how find a contact with a ItemId in my ContactCollection...
Please help me!

Karsten
 
There is a constructor for the Contact class which takes an ItemID e.g.

Contact c = new Contact(id);
c.ShowDialog();

or VB

Dim c As New Contact(id)
c.ShowDialog()

Peter

--
Peter Foot
Microsoft Device Application Development MVP
peterfoot.net | appamundi.com | inthehand.com
APPA Mundi Ltd - software solutions for a mobile world
In The Hand Ltd - .NET Components for Mobility
 
Back
Top