tags:

views:

1105

answers:

2

i've been searching for awhile on how to dial a phone number programmatically (using C#). i read an article about using Microsoft TAPI to do the job.. however i couldnt fully understand it..

so i was hoping to find alternative ways of doing it or a simpler tutorial than the one offered in msdn. or if possible a C# accessible sim-card reader, which could allow me to sms/dial numbers.

+7  A: 

Check this tutorial

Aamir
+1 cant check it at the moment.. but it looks like it does exactly what i need. :D (so your the "chosen one", until confirmed")
Madi D.
A: 

I simply changed the text box type to:

mTextBox = new TextBox("Magic Dialler", "", 25, TextField.ANY);
// The below line does the trick !!
// 1: Adds Import From Contacts option
// 2: Adds Call button for calling just about any number with any special chars !
mTextBox.setConstraints(3);

http://sarfraznawaz.wordpress.com/2010/03/27/magic-dialler-my-first-j2me-application/

Sarfraz