Just an idea...
What about having a RTimer ticking, let's say, every 100ms. Then in RunL()
(or whatever callback) you would have something like:
//is it time to launch a feature:
TTime currTime;
currTime.HomeTime();
int currTimeInt = CalcSeconds (currTime);
int startTimeInt = CalcSeconds (iStartTime);
int diff = (currTimeInt - startTimeInt);
//init
iStartTime.HomeTime();
"renuka" wrote in message news:75366@developer.symbian.com...
Hi to all, My requirement is to Launch a feature of my application at
Scheduled Time.(This is set by the user).I used RTImer,but after some
research I found that it doesnot work properly for long durations( On
phones).Can I use any one of ther two apis i.e ALarm server or Calender.
Which one would be a better choice. If i use Aalarm server, can I notify the
alarm( within the application, which handles the launch of the feature) with
out displaying any Alarm dialog. Regards, Renuka.