Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using TAPIEX to devolve a IVR system. I want to devolve a conferrence system in this case,. But I am getting error:

Line:'Nokia 7230 USB Modem (HCALL:0x10267)' SetupTransfer() method failed, TAPI Error Code=ERR_OPERATIONUNAVAIL
Line:'Nokia 7230 USB Modem' Warning: method 'SetupTransfer()' is not supported in the device.
VB
Private Sub BnTransferDial_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles BnTransferDial.Click

        'mCall will be in onHoldPendingTransfer state , ConsultCall will in dialtone
        If mCall.SetupTransfer() Then
            Sleep(1000)
            bnSwapHold.Enabled = True
            BnTransferComplete.Enabled = True
            BnThreeWay.Enabled = True
            'use ITAPILine.ConsultCall to obtain the consultation call.
            mCall.LineOwner.ConsultCall.Dial(TextTransferPhoneNumber.Text)
        End If

    End Sub

I dont't know why this is happennig? suggest something
Posted
Updated 7-Oct-12 7:48am
v2

1 solution

You can read can't you? What part of "'SetupTransfer' is not supported by the device" is difficult to understand??

It'll telling you that your modem doesn't support transferring calls.
 
Share this answer
 
Comments
avikGhosh87 7-Oct-12 14:27pm    
I can read but the problem is, this device is mobile phone. So in general we know that it can transfer call,but still i am facing the problem.
Dave Kreskowiak 7-Oct-12 14:37pm    
It doesn't support it in a method that TAPI supports!
avikGhosh87 7-Oct-12 14:38pm    
Let me know any better modem which support all TAPI function
Dave Kreskowiak 7-Oct-12 16:10pm    
No idea. Never use them and never will.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900