Dial Tel number

devjet

Member
Licensed User
Longtime User
I have used this to dial a list of Tel numbers on a HTML website.

Dim p As PhoneCalls
StartActivity(p.Call(url.SubString(0)))

it works as long as I use a local number

077 244 22 33

as soon as I use a number

+33 77 244 22 33 it does not select the entire number (last two digits are missing)

any idea how I could achieve that it dials the entire number

Thanks
 

devjet

Member
Licensed User
Longtime User
Are you sure that the string contains the whole number? Did you add a log message and checked the string?
Yes, if I click on first number it is dialed without problem second number misses last two digits.
 
Upvote 0

djpero

Member
Licensed User
Longtime User
I have problem Calling:

B4X:
Dim pc As PhoneCalls
   StartActivity(pc.Call("*101#"))

char "#" is missing while dial.


* found solution in some Erel's post.
 
Last edited:
Upvote 0
Top