TEL: protocol (3CX voip)
TEL: protocol (3CX voip)
Hi,
I would like to use the 'TEL:<phone number>' protocol of windows to call numbers with my 3cx app. I can't find any info about how to do this.
Is someone already using this?
I would like to use the 'TEL:<phone number>' protocol of windows to call numbers with my 3cx app. I can't find any info about how to do this.
Is someone already using this?
Re: TEL: protocol (3CX voip)
The eXpress train is coming - and it has more cars.
Re: TEL: protocol (3CX voip)
Hi Roger,
Thanks for the link. This is what I already configured on my PC. When i open a website with a phonenumber, I can dial it immediately.
I can't find how to use this from xbase++.
My 3CX phone app is the default program for the TEL protocol. I tried with the following as I expected this would open it.
But nothing happens when this is executed.
Thanks for the link. This is what I already configured on my PC. When i open a website with a phonenumber, I can dial it immediately.
I can't find how to use this from xbase++.
My 3CX phone app is the default program for the TEL protocol. I tried with the following as I expected this would open it.
Code: Select all
function telprotocol(cTelefoon) // {|| telprotocol("050353100") }
*******************************
DllCall( "Shell32.dll" , DLL_STDCALL, ;
"ShellExecuteA", 0, Chr(0), "tel:"+cTelefoon, Chr(0), Chr(0), 3)
return .T.
Re: TEL: protocol (3CX voip)
Hi,
This should be a solution. It is not using the TEL protocol.
C:\ProgramData\3CXPhone for Windows\PhoneApp>CallTriggerCmd.exe -call 050353100
This should be a solution. It is not using the TEL protocol.
C:\ProgramData\3CXPhone for Windows\PhoneApp>CallTriggerCmd.exe -call 050353100
Re: TEL: protocol (3CX voip)
hi,
https://docs.microsoft.com/en-us/window ... llexecutea
as i can say EXE and Parameter is needskiman wrote: ↑Fri Apr 30, 2021 12:06 amCode: Select all
function telprotocol(cTelefoon) // {|| telprotocol("050353100") } ******************************* DllCall( "Shell32.dll" , DLL_STDCALL, ; "ShellExecuteA", 0, Chr(0), "tel:"+cTelefoon, Chr(0), Chr(0), 3) return .T.
https://docs.microsoft.com/en-us/window ... llexecutea
Code: Select all
lSuccess := @SHELL32:ShellExecuteA( APPDESKTOP() :GetHWND(), ;
"open", ;
cPath + cFile, ;
cParameter, ;
CURDIR(), ;
SW_HIDE ) // SW_SHOWNORMAL
greetings by OHR
Jimmy
Jimmy
Re: TEL: protocol (3CX voip)
When I do:
start tel:07666545432
It does appear to open the default app assigned to the Tel protocol...
start tel:07666545432
It does appear to open the default app assigned to the Tel protocol...
Regan Cawkwell
Real Business Applications Ltd
http://www.rbauk.com
Real Business Applications Ltd
http://www.rbauk.com
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany
Re: TEL: protocol (3CX voip)
Then DC_SpawnUrl("tel:07666545432") should do the same ?
_______________________
Best Regards
Wolfgang
Best Regards
Wolfgang
Re: TEL: protocol (3CX voip)
Hi,
@Regan, are you doing that at the command prompt? This isn't working on my PC.
@Regan, are you doing that at the command prompt? This isn't working on my PC.
Re: TEL: protocol (3CX voip)
No, this isn't working on my system.Wolfgang Ciriack wrote: ↑Fri Apr 30, 2021 5:02 am Then DC_SpawnUrl("tel:07666545432") should do the same ?