4

I have been trying to find a way to control my winmo phone from my pc. (HTC S740)

What I want is to be able to call a number from an application, answer the phone from an application and hangup the phone from an application. It should also be able to track how long the ongoing call has been.

Any libraries out there that lets me make such an application with C#?

(The phone is connected to the pc via usb in Windows 7.)

Christian Wattengård
  • 5,543
  • 5
  • 30
  • 43
  • What have you found in your search so far? A quick google search turned up [Microsoft.WindowsMobile.Telephony](http://msdn.microsoft.com/en-us/library/aa455392.aspx). Have you looked at that? – Patrick May 27 '10 at 09:44
  • That's the wrong end. I want to control it via the PC. That's a Windows Mobile SDK api... – Christian Wattengård May 27 '10 at 11:15

2 Answers2

3

You can use RAPI to invoke functionality on the device. You might need to write a wrapper.
I believe that this answer by ctacke should help you perform the task.

Community
  • 1
  • 1
Shaihi
  • 3,952
  • 4
  • 27
  • 47
0

You can look at OpenNETCF library, which have many utilities to call native APIs that can help you, but i didn't hear of any library to help control your phone remotely.

Piotr Wach
  • 913
  • 2
  • 9
  • 22