Contents

VoiceGuide Help
1. Introduction
Welcome To VoiceGuide
Which version to use
2. System Configuration
System Requirements
Installing v7.x - Dialogic
Installing v7.x - VoIP / HMP
Installing v6.x - Dialogic
Installing v5.x - Voice Modems
Installing v5.x - CAPI compatible cards
Installing v5.x - Dialogic
Installing v5.x - Dialogic Wave Drivers
Text To Speech
Call Transfers and Conferencing
ODBC Data Sources
End of Call Detection
Distinctive Ring Detection
T1/E1 ISDN Configuration
T1/E1 RobbedBit/CAS/R2 Configuration
VoIP Line Registration
Command Line Options
Registering VoiceGuide
Unique System Identifier
3. Script Design
Introduction
Graphical Design Environment
Module Types
Paths
Result Variables
Call Start
Call Finish
Multilanguage Systems
Protected Scripts
Sound files
Testing Scripts
4. Modules Reference
Play
Record
Get Numbers
Say Numbers
Transfer Call
Send Phone Message
Send Pager Message
Send Email
Database Query
Run Program
Time Switch
Evaluate Expression
Run VB Script
Send DDE Command
Hangup Call
5. Voicemail
Introduction
Voicemail System Manager
Voicemail Menus
Message Lamps
6. Outbound Dialing
Loading Numbers to Call
Detect Call Answer
Predictive Dialers
External OutDialQue Source (v7)
External OutDialQue Source (v6)
7. Speech Recognition
Introduction
Grammars
Install LumenVox
8. Logs
Script Logs
Call Detail Records (CDRs)
9. ActiveX / COM Interface
Admin_TraceLogAdd
Dialer_MakeCall
Dialer_OutDialQueAdd
Bridge_Connect
Bridge_Disconnect
Line_Hangup
Line_Pickup
Play_Start
Play_Stop
Record_Stop
Record_Start
Record_2Lines_Start
Run_ResultReturn
RvGet
RvGet_All
RvGet_AllXml
RvSet
RvSet_RvList
Script_Gosub
Script_Goto
Script_Return
Serial_Tx
Vm_Event
Vm_VmbConfig_Get
Vm_VmbConfig_Set
10. PBX Integration (CTI)
Inband Signaling
Ericsson MD110 Voicemail Interface
Legal Information
Copyright & Disclaimer

 
Home
VoiceGuide Online Help
Prev Page Next Page
 
 

Bridge_Connect

VoiceGuide COM Reference

Connects two calls together. Callers on on each line will will be able to speak to each other.

This command will only work when the following Dialogic cards are used: D/41EPCI, D/41ESC, D/41JCT-LS, D/120JCT-LS, D/160SC-LS and all digital cards: D/240SC, D/300SC etc.

Syntax

sResult = object.Bridge_Connect(iLineId1, iLineId2)

or

sResult = object.Bridge_Connect(sChName1, sChName2)

Part Description

object Required. VoiceGuide object

iLineId1 Required. Identification number of the first line

iLineId2 Required. Identification number of the second line

sChName1 Required. The name of the first Dialogic channel.

sChName2 Required. The name of the second Dialogic channel.

sResult Optional. Empty string if function completed OK, otherwise it will contain the error description.

Remarks

This command needs to be issued only once to connect two calls together. It does not matter which of the lines issues the call - both lines will be able to hear and speak to each other.

 

Examples

Example 1: Using line ID numbers

set vg = CreateObject("vgServices.CommandLink")
vg.Bridge_Connect $RV_LINEID, iSecondLineId
set vg = Nothing

Example 2: Using Dialogic channel descriptors (Analog cards)

set vg = CreateObject("vgServices.CommandLink")
vg.Bridge_Connect "dxxxB1T3", "dxxxB4T1"
set vg = Nothing

Example 3: Using Dialogic channel descriptors (Digital cards), and if an error is returned then display the error in a message box

set vg = CreateObject("vgServices.CommandLink")
sResult = vg.Bridge_Connect("dtiB1T21", "dtiB2T13")
if sResult <> "" then
  MsgBox sResult
end if
set vg = Nothing

Converted from CHM to HTML with chm2web Pro 2.7 (unicode)