Hi,
i want to call a SIP-URL from code.
This works in html:
<a href="sip:my_number">call</a>
When i click on the link “call” a softphone gets the number and dials.
How would i do this in Xojo?
Hi,
i want to call a SIP-URL from code.
This works in html:
<a href="sip:my_number">call</a>
When i click on the link “call” a softphone gets the number and dials.
How would i do this in Xojo?
ShowURL("sip:my_number")
perfect!
Thank you.