32 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
307
views
c# asternet cancel outgoing-call
I'm using Asternet for my manager-program so employees can call a customer with just a click.
But I'm trying to find how to cancel or disconnect a call to a customer. When I click on the call-button, ...
1
vote
2
answers
2k
views
powershell: launching phone numbers to default voip program
I am writing a program that pulls multiple client details from get-aduser
one property i grab is get-aduser.phonenumber
I am displaying the number correctly to a link label.
my question is how do i ...
0
votes
1
answer
510
views
Fragment webView for Button (to call or dial a number) [Android Studio]
I have successfully added a WebView to a fragment, to load a website. However, some elements on the website, such as a button, link to a tel= scheme, resulting in an err_unknown_url_scheme error when ...
2
votes
1
answer
567
views
How to create a click to call button without navigating away from the current page?
I have a "Click to call" button on my website. Then the user clicks it, he/she is navigated to a different page.
Here is my HTML markup
<a href="tel:+18001234567" class="btn btn-lg btn-danger btn-...
1
vote
1
answer
799
views
How to enter an option during voice calls using at commands
I've been using a sim900 module to replicate many of the functions found in a basic cellphones for an embedded project. I've been successful with most functions with the exception of entering options ...
0
votes
1
answer
223
views
Is it possible to dial two or more numbers in same time - classic SIM based calls - Dual SIM devices
Is it possible to dial two numbers in same time ?
Maybe android.telecom.Conference
can help me , but there is no lot of examples for this class usage.
android.telecom.Conference
Doc say :
...
1
vote
3
answers
985
views
How to give dial functionality to the icon
I need to do whenever click on number or dial icon it's going to dialing in our mobile.
I have done whenever click on number it's going to dial, but I don't no how to give same for the icon.
....
1
vote
1
answer
2k
views
Fixed Dialing Number (FDN) how to create list of allowed numbers programmatically
I would like to create/update the FDN list programmatically. Any idea where this journey should begin?
Maybe somebody before me had similar issue and can help me with this.
For any code examples ...
0
votes
0
answers
209
views
Use KDtele component to find modem
I am using the KDtele component to make a dialer program
I use this code to find the modem in my PC and add it to a combo box
Int32 lNum = 0;
string lName = "";
for (lNum = 0; lNum < axKDPhone1....
1
vote
0
answers
55
views
Making phone call in windows phone 8.1 in a single tap
I'm writing an emergency app and so I need to allow the user to make phone call in a single tap. All the articles I've been reading so far allows phone call in 2 taps. Is there a way to do that in ...
1
vote
2
answers
487
views
Initiate phone call from app with area code (prefix)
In my code, I have this snippet to make a phone call with dialing prefix (basically, a "call me" button) :
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://+0000000000"]];...
3
votes
1
answer
707
views
How to hide dialled number during calling in Android
I want to know how to we can hide the dialed number from screen when user make any call from android device. We don't want to allow user to see the dialed number. waiting for reply..
1
vote
0
answers
99
views
Issue in getting notification during calling in android
I am a new developer of android app. I am doing an app which is dialing a number after getting that number through push notification. This was successfully done, however when I am sending another push ...
user avatar
user2716802
0
votes
1
answer
210
views
How can I detect/list apps that can dial? [duplicate]
Buddies,
Talking directly: in Android, how can I grab/list (from my app) all the apps that can perform dialing operations? Is there a way to list all the apps with a given permission (in my case, the ...
1
vote
1
answer
729
views
Starting the application from a BroadCastReceiver (NEW_OUTGOING_CALL doesn't always work)
Well, I've written an application that starts by dialing an specific number, I have used NEW_OUTGOING_CALL(a broad cast receiver) to catch the dial event.
So far the broad cast receiver on my ...