Need help for TAPI on Windows Mobile 5.0

  • Thread starter Thread starter vikash
  • Start date Start date
V

vikash

Hello

I Need help for TAPI on Windows Mobile 5.0.

Actually i have to make an application that will make phone calls from
the device.

We are to use Windows Mobile 5.0.

I haven't any knowledge of TAPI.

Any kind of help will be appriciated.

Thanks in Advance

Thanks & Regards
Vikash
 
Take a look at the Microsoft.WindowsMobile.Telephony.dll assembly. It
includes the Talk method.

-Alex
 
The Microsoft.WindowsMobile.Telephony namespace contains the Phone
class. Phone class provides the Talk method.

But i need more program control over this. Like connecting a call,
disconnecting a call, interrupting, checking tones for busy or free,
signal, GPS etc..

Can You help me regarding this.
Where i should find related to these ??

Thanks & Regards
Vikash
 
Use the Microsoft.WindowsMobile.Status

You can use the Microsoft.WindowsMobile.Status namespace with the following code:

Private Sub StatusTest()
If (Microsoft.WindowsMobile.Status.SystemState.PowerBatteryStrength = Microsoft.WindowsMobile.Status.BatteryLevel.Low) Then
'Your stuff
End If
'Another example
TextBox1.Text = Microsoft.WindowsMobile.Status.SystemState.PhoneLastIncomingCallerName
End Sub

Ciao

Johnny
 
Back
Top