Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in Mobile Development only
Search
Advanced Search
Forums
BYTES
Product Launch
Updates
Developer Toolkit
Member List
Calendar
Today's Posts
Home
Forum
Topic
Mobile Development
How to access contacts informatioon from mobile.
How to access contacts informatioon from mobile.
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
rajeshgubba
New Member
Join Date:
Jul 2008
Posts:
4
#1
How to access contacts informatioon from mobile.
Oct 17 '08, 10:36 AM
Hi,
Can anybody help me how can use the contacts data present in mobile.?
thanks,
RedSon
Recognized Expert
Expert
Join Date:
Jan 2007
Posts:
4980
#2
Oct 17 '08, 02:39 PM
You can try searching for POOM.
Comment
Post
Cancel
rahulsengar
New Member
Join Date:
Oct 2008
Posts:
6
#3
Oct 31 '08, 06:01 AM
hey if you are using WIndows mobile 5.0
You have to add this dll i.e add the reference
Microsoft.Windo wsMobile.pocket outlook in your application
You can use this set of code to know the information on what contacts are present on your mobile
OutlookSession _ContactSession =new OutlookSession () ;
for (int i = 0; i < _ContactSession .Contacts.Items .Count; i++)
{
if (CopyPhoneNumbe r == _ContactSession .Contacts.Items[i].MobileTelephon eNumber)
{
index++;
textBox1.Text = _ContactSession .Contacts.Items[i].FirstName;
}
else
{
continue;
}
}
Comment
Post
Cancel
Previous
template
Next
Working...
OK
OK
Cancel
👍
👎
☕
Comment