Call made,received,missed,time

Login to reply to this topic.
Wed, 2005-04-13 12:04
Joined: 2005-03-26
Forum posts: 19
hai ,

i am new to symbain. how to find the

1. number of call made
2. number of call received
3. number of call missed
4. time of call made,missed,received?

is there any log file. if so how to retrieve these values from that file.

help me
with advance thanks
laksmi priya

Thu, 2005-04-21 10:31
Joined: 2005-01-28
Forum posts: 7
Call made,received,missed,time
see this piece of code

Use an active object
////////////////////
iLogWrapper=CLogWrapper::NewL(CEikonEnv::Static()->FsSession());
CLogBase* logBase = &(iLogWrapper->Log() );
iLogClient=static_cast<CLogClient*>(logBase);
iRecentLogView = CLogViewRecent::NewL(*iLogClient);
iRecentLogView->SetRecentListL(KLogNullRecentList,iStatus);
SetActive();
///////////////////////////
In RunL

TBuf<20> telNumber;
const CLogEvent& event = iRecentLogView->Event();
telNumber.Copy(event.Number());
/////////////

This is for most receireceived call...

procedure is same for rest of the things.

Happy coding

Narasimham.m
Sun, 2005-07-10 12:54
Joined: 2005-07-07
Forum posts: 34
Re: Call made,received,missed,time
Hi shibenguha,

I work with p900 and on this mobile there isn't logcli.dll. How can I use
"iRecentLogView = CLogViewRecent::NewL(*iLogClient); "

without this dll ?

thanks!
Wed, 2005-07-13 10:14
Joined: 2005-07-13
Forum posts: 20
Re: Call made,received,missed,time
to get the  logcli.dll file
Mon, 2005-07-18 13:19
Joined: 2005-07-07
Forum posts: 34
Re: Call made,received,missed,time
Hi

LogCli.dll works with phone's log engine. For Calls, this is logdbu file. On the p900 log is not organized in this way. There isn't such file  and you can't use this dll.
  • Login to reply to this topic.