Contact.ItemID

  • Thread starter Karsten Baumann
  • 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
 
P

Peter Foot

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top