Knows anybody if this error is related to the use of the emulator?
-canOpenURL: failed for URL: "tel:632222222" - error: "This app is not allowed to query for scheme tel"
Sub Button1_click
Private phonenumber As String
phonenumber = "tel:632222222"
If App.CanOpenUrl(phonenumber) = True Then
App.OpenURL(phonenumber)
End If
End Sub
Tx