Need help for TAPI on Windows Mobile 5.0

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
 
A

Alex Yakhnin

Take a look at the Microsoft.WindowsMobile.Telephony.dll assembly. It
includes the Talk method.

-Alex
 
V

vikash

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
 
Joined
Oct 21, 2006
Messages
3
Reaction score
0
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
 

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