Answer a call


Using TeleScope

1.    Activate the line device.

2.    Select a Call.

3.    An entry will appear in the log when the etLine.OnOffering or etLine.OnCallBegin event fires. The etLine.OnRing, etLine.OnCallerID and other event may also fire.

4.    Select the “Call | Answer” menu option.
     -or-
Click the etLine.Call.Answer tool bar button on the "Call" tab.
     -or-
Click the Answer button on the "Call | Control" tab.

Using TeleTools

1.    Activate the line device.

2.    Select a Call.

3.    The etLine.OnOffering event fires first then etLine.OnRing, etLine.OnCallerID and other event may also fire.

4.    Call the etLine.Call.Answer method. This is commonly done in the etLine.OnRing event.
     Example:
           if not etLine1.Call.Answer then
                 //There must have been an error
     -or-
           In the etLine.OnOffering event
                 //Use the event handler routiones CallHandle parameter
                 etLine.Call.Handle := CallHandle
                 if not etLine1.Call.Answer then
                       //There must have been an error