Sub Call(USSDCommand As String)
Dim pc As PhoneCalls
Dim i As Intent
i.Initialize(i.ACTION_CALL, "tel:" & USSDCommand.Replace("#", "%23"))
StartActivity(i)
End Sub
This code works fine, but after calling the ussd command executed, i received msgbox with OK button. How can I dismiss that msg programmatically ?
It shows a cellular network feedback's msgbox confirmation directly after ussd command executed. it only with OK button to dismiss. I want to dismiss it programmatically, or suppress it completely.