How To Stop Short Ringing Tone ???

Login to reply to this topic.
Sun, 2007-07-29 20:25
Joined: 2007-06-20
Forum posts: 93

Hi Friends,
I am trying to rejects the incoming calls,Incoming calls Reject But I am getting a short ringing tone before rejection.
Has anybody ever faced the same.Kindly tell me how can I control it.
Plz guide me regarding this.......


Thanks & Regards,
C Singh


Wed, 2007-08-01 12:18
Joined: 2007-06-20
Forum posts: 93
Re: How To Stop Short Ringing Tone ???

ok frnds,
my problem has been solved....
i just use to check callstatus after opening the call and then hangup it. After that caller doesn't hear short ringtone...
code is here:-----

User::LeaveIfError(iCall.OpenExistingCall(iLine, iCallName));//open existing call
                    User::LeaveIfError(iCall.GetStatus(iCallStatus));// get status
                        if (iCallStatus == RCall::EStatusRinging)//check here
                        {       
                             iCall.HangUp();
                             iCall.Close();]
                        }


Thanks & Regards,
C Singh

  • Login to reply to this topic.