Hi,
I have a question about Phone call. Programmatically How to identify incoming call that comes for me Can i do this thru Phone APIs I could retrieve call informations (missed calls, Dialed calls...) by using Phone APIs. Please send your suggestions or links.
Thanx.
M. GANESAN

Identify Incoming call
DanMeyers
Santosh_DotNet
Hi
If you are using Windows Mobile 5.0 devices use the State and Notification Broker. This API provides all information you need (class SystemState).
For instance SystemState.PhoneIncomingCallerNumber returnes the phone numer of an incomming call.
Hope this is what you are looking for.
Michael
sajithpt
In this case you'll have to use the Extended TAPI API to monitor incomming calls.
Open the GSM TAPI device with monitoring privileges and monitor LINE_CALLINFO and LINE_CALLSTATE messages.
A managed wrapper from Alex Feinman is available here: http://www.alexfeinman.com/download.asp doc=tapi1.6.zip
Michael