How to open built-in call history manager ?

J

juvi

Hello,

Is it possible to open the built-in phone calls history/list through .net cf
on Windows Mobile Professional/Standard?

And what about "Voice Messages" - where to find them??

thx
juvi
 
P

Peter Foot

On Windows Mobile 5.0 and above you can display the call history using
PhoneShowCallLog. To access the data directly there are a number of
functions as part of the Phone API - PhoneOpenCallLog etc which can be
P/Invoked. There is also a fully managed API for all of this in our Mobile
In The Hand product (http://inthehand.com/content/Mobile.aspx) in the
InTheHand.WindowsMobile.Telephony.CallHistory class.

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
 
J

juvi

OK....I have not P/Invoked the following:

[DllImport("Phone.dll")]
private static extern long PhoneOpenCallLog(out IntPtr ph);

How to use this now? I want to get the standard form used by default on the
devices when showing call history. How to open this form?
 
P

Peter Foot

Then as I said before use PhoneShowCallLog and pass 0 in as the argument to
show all calls.

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

juvi said:
OK....I have not P/Invoked the following:

[DllImport("Phone.dll")]
private static extern long PhoneOpenCallLog(out IntPtr ph);

How to use this now? I want to get the standard form used by default on
the
devices when showing call history. How to open this form?

Peter Foot said:
On Windows Mobile 5.0 and above you can display the call history using
PhoneShowCallLog. To access the data directly there are a number of
functions as part of the Phone API - PhoneOpenCallLog etc which can be
P/Invoked. There is also a fully managed API for all of this in our
Mobile
In The Hand product (http://inthehand.com/content/Mobile.aspx) in the
InTheHand.WindowsMobile.Telephony.CallHistory class.

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