SendDTMF
Previous  Next

Sends tones for tone driven services (like interactive phone menus).
Syntax: SendDTMF (DTMF As String)

Example:
Sub App_Start
      Form1.Show
      phone.New1("form1")
      phone.Call("1-800-800123")
End Sub
Sub phone_TalkingStart
    phone.SendDTMF("1234567890#*")
End Sub