Sub xx_Disconnect (ByVal Channel as Integer, ByVal Reason as Integer)
This event is fired when a caller hangs up and it can occur in any control that performs voice processing. This event allows clean-up on a per-control basis. After it occurs, a Disconnect event occurs in the LineGroup control that initiated this call. Read more about Disconnect Event.
EnterEvent(Channel As Integer, Greeting As Object)
The Enter event is executed by the control upon call entry. If the GotoNode property is set or the TakeCall method is used, the call exits this control and is handled by the new control after the Exit Sub or End Sub statement. Read more about Enter Event.
Exit(Channel As Integer, Node As Integer)
This event fires when a call leaves a control, but before the Enter event occurs in the destination control. Read more about Exit Event.
PhraseError(ByVal Channel as Integer, Phrase as Object, ByVal ErrType as Integer)
This event is fired when VBVoice cannot open a specified file; when VBVoice cannot find a specified phrase within a file; when an invalid parameter is specified in a System Phrase. Read more about PhraseError Event.
Sub PlayRequest(ByVal Channel as Integer, ByVal PhraseName as String, Phrase as Object)
This event occurs when a greeting contains a VB Phrase. Every VB Phrase is named so that it can easily be identified in a situation where a control has multiple VB Phrases. Read more about PlayRequest Event.
VoiceError(Channel as Integer, ErrorType as Integer, ErrorData as Integer, Processed as Integer)
This event fires when a non-fatal error occurs in the control. When this error event occurs, the control generating the event is generally not able to continue normal processing. Read more about VoiceError Event.