Is it possible to have to enter the call rate in the main page it self?
I mean Rs3 per call...or Rs 2 per call...like that..
In my code I hard coded
here is the code.
void CCallLog::RunL()
{
RWsSession WsSession;
WsSession.Connect();
TApaTaskList taskList(WsSession);
TApaTask task = taskList.FindApp(KAppName);
task.BringToForeground();
const CLogEvent& event = iRecentView->Event();
TTimeIntervalSeconds timeInSeconds = event.Duration();
iDuration = timeInSeconds.Int();
iTelephoneNumber = event.Number();
iUnit = ( iDuration / 60 ) + 1 ;
iRate = 5.00 * iUnit;
// iTelNumber.Copy(event.Number());
AddItem(iTempSize4,iTempSize5);
Cancel();
}
thanks in advance.



