hello
how get phone number of incoming call
How use RCall or RLine To get phone number of incomng call
hello
how get phone number of incoming call
How use RCall or RLine To get phone number of incomng call
Hi,
Use following code,
regards,Code:RMobileCall m_currentCall; m_currentCall.OpenExistingCall(iLine, iIncomingCallName); RMobileCall::TMobileCallInfoV1 callInfo; RMobileCall::TMobileCallInfoV1Pckg callInfoPckg(callInfo); m_currentCall.GetMobileCallInfo(callInfoPckg); TBuf<50> aCallNumber; aCallNumber.Copy(callInfo.iRemoteParty.iRemoteNumber.iTelNumber);
eswar
Hi
But I Cannot find this class
I use S60_2nd_FP2 and my mobile is 6630
Hi,
I think it's in Etelmm.h. And the Etelmm.h copy you have with your SDK might be a cut down version of the original one. So you may not find all the functions in your copy.Originally Posted by asdfghjkl_asdfghjkl
And some etel stuffs do not come with public API.
Anyways you can click on the following:
http://zerogravity.narod.ru/symbian/...elmm_uiq21.zip
Regards.
Kiran.
Hello eswar_illuri
I Use this code but when mobile ringing not work and dont return call number(callerid) please help me.
and special tanks kiran10182 for help me
Hi,
Create One AO, check the following code...
and in runl function check the iState and retrieve the mobile number.Code:TBool CCallManager::WaitIncomingCall() { iNewCallName = _L(""); iIncomingCallName = _L(""); iLine.NotifyIncomingCallCancel(); Cancel(); iLine.NotifyIncomingCall(iStatus, iIncomingCallName); iState = EWaitIncomingCall; SetActive(); return ETrue; }
regards,
eswar
void ListenL()
{
iLine.NotifyIncomingCall(iIncomingStatus,iName);
User::WaitForRequest(iIncomingStatus);
RMobileCall::TMobileCallInfoV1 callInfo;
RMobileCall::TMobileCallInfoV1Pckg callInfoPckg(callInfo);
User::LeaveIfError(iCall.GetMobileCallInfo(callInfoPckg));
telNumber = callInfo.iRemoteParty.iRemoteNumber.iTelNumber;
}
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827