| Author |
Programmatically Dial A Cell Phone Number
|
|
|
| Are there any sample .net applications using SmartPhone technology to
programmatically dial a cell phone without any user interface?
I need to call a cell phone number in a c# app to notify the recipient of an
event that just happened. This should be a console app.
| |
| Peter Foot [MVP] 2005-10-25, 7:03 pm |
| Using either Microsoft.WindowsMobile.Telephony (Windows Mobile 5.0) or
InTheHand.WindowsMobile.Telephony (www.inthehand.com/WindowsMobile.aspx)
Phone p = new Phone();
//suppress prompt
p.Talk("1234", false);
Peter
--
Peter Foot
Windows Embedded MVP
http://www.inthehand.com | http://www.peterfoot.net
"Dan" <dan@morriscs.com> wrote in message
news:eum1onZ2FHA.3188@TK2MSFTNGP12.phx.gbl...
> Are there any sample .net applications using SmartPhone technology to
> programmatically dial a cell phone without any user interface?
>
> I need to call a cell phone number in a c# app to notify the recipient of
> an event that just happened. This should be a console app.
>
| |
| Dan Sikorsky 2005-10-25, 9:57 pm |
| Thanks, I'll look into it.
--
Dan Sikorsky, MSCS BSCE BAB
"Peter Foot [MVP]" <feedback@nospam-inthehand.com> wrote in message
news:usyf6xZ2FHA.3272@TK2MSFTNGP09.phx.gbl...
> Using either Microsoft.WindowsMobile.Telephony (Windows Mobile 5.0) or
> InTheHand.WindowsMobile.Telephony (www.inthehand.com/WindowsMobile.aspx)
>
> Phone p = new Phone();
> //suppress prompt
> p.Talk("1234", false);
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> http://www.inthehand.com | http://www.peterfoot.net
>
> "Dan" <dan@morriscs.com> wrote in message
> news:eum1onZ2FHA.3188@TK2MSFTNGP12.phx.gbl...
>
>
|
|
|
|