Thanks
Thank you, i tried this example before but it doesnt work, so i updated my Phone Library form 1.60 to 1.70 and now With contacts2 it works fine.
Thank you

Here is my solution
i say Call home, then in edittext.text="call home" with the substring she search for home in my contacts and calls him or her
Sub Button1_Click
Dim Contacts2 As Contacts2
Dim listOfContacts As List
edittext1.Text.SubString(5)
listOfContacts = Contacts2.FindByName(edittext1.text.substring(5), False, True, True)
For i = 0 To listOfContacts.Size - 1
Dim Contact As Contact
Contact = listOfContacts.Get(i)
Log(Contact) 'will print the fields to the LogCat
Dim photo As Bitmap
photo = Contact.GetPhoto
If photo <> Null Then imageview1.bitmap=photo
imageview1.Visible=True
Dim phones As Map
phones = Contact.GetPhones
If phones.Size > 0 Then Log(phones)
Next
Dim p As PhoneCalls
StartActivity(p.Call(Contact.PhoneNumber))
End Sub