Hi All,
I am new to this area. I would like to know is there a way to store/retrieve information persistently using Javascript in WRT.
Any links or code snippets will help in this regards.
...
Type: Posts; User: mvijay; Keyword(s):
Hi All,
I am new to this area. I would like to know is there a way to store/retrieve information persistently using Javascript in WRT.
Any links or code snippets will help in this regards.
...
sorry for my wrong understanding.
Thanks skumar_rao for correcting me...
Best Regards,
Vijay M
Hi amol_benare604,
If you trying to capture numeric keys alone, then it is possible by implementing the offerkeyeventl() of ur ccoecontrol derived class.
within this method,TKeyCode augment has...
Hi,
Chk this discussion..
http://developer.symbian.com/forum/thread.jspa?messageID=88276𕣔
Best Regards,
Vijay M
Hi,
Hope this discussion thread or wiki TS helps...
http://discussion.forum.nokia.com/forum/showthread.php?t=65640&highlight=listen+keypress
...
hi,
AIW Service Handler API can be used to make voip calls. The following Technical Solution describes the same.
http://wiki.forum.nokia.com/index.php/TSS000713_-_Creating_video_and_VoIP_calls...
Hi,
Can use Phone Client Extension API for muting the microphone while playing to uplink.
The following wiki technical solution solves the purpose:
...
Hi,
CreateBitmapL() returns a Pointer to the loaded bitmap and that object ownership is transferred to the caller. So this should be deleted.
Hope this solves the problem.
Best Regards,...
Hi,
Hope this link helps you..
http://wiki.forum.nokia.com/index.php/Logs_Timers_API
Cheers,
Vijay M
Hi,
The following code snippet gives you a general idea on how this can be done:
Say your class is MyAppUi.h and MyAppUi.cpp and create an instance of CBatteryCheck as follows:
In MyAppUi.h...
Hi,
Just copy the respective header and cpp file in new files and add the cpp filename in mmp file and create an instance of CBatteryCheck class in your class where you want to use this class and...
Hi,
This wiki page gives the information.
http://wiki.forum.nokia.com/index.php/Monitoring_battery_status_with_CTelephony
Cheers,
Vijay M
Hi,
What is the error code you are getting?
Anyways, derive your class from MAknServerAppExitObserver class and give implemention for the HandleServerAppExit() method.
This should solve the...
Hi,
Hope this link helps:
http://discussion.forum.nokia.com/forum/showthread.php?t=51078&highlight=listbox+font+size...
Hi,
You can use CDesCArray to store descriptor type data. If you want to insert text items into it, can use AppendL() method.
For getting the no. of elements in the array, can use Count()...
Hi,
Just a sample to ur usecase.
_LIT(KString, "stringtest");
_LIT16(KFormat,"%05d"); // pad char="0", field width=5
TBuf<20> formatString;
formatString.Copy(KString);
Hi,
I hope you are looking to access(read) the contents of Inbox.
The following link might be useful:
http://wiki.forum.nokia.com/index.php/SMS_Operations#Inbox
Cheers,
Vijay M
Hi,
I didnt see the entire source of that Log Monitor example. The ConstructL() of this class is calling the StartMonitorL() implicitly. So there is no need to call it explicitly using the object....
Hi,
Just create an instance of CLogMonitor class and call StartMonitorL(). As Jukka said, basically you need to call Add the Active Object but in this case it is not required as the Log Monitor...