skumarmobiledev.blogspot.com
Mobile Development
http://skumarmobiledev.blogspot.com/2008/10/how-to-detect-if-phone-has-3g-enabled.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Thursday, October 30, 2008. How to detect if phone has 3G enabled. Some items in you applications you want to do some action only when there is 3G network (like video streaming upload or video calling.) So how to detect that phone has 3G network. Growing use of mobile phones and custom mobile application. Thanks fo...
skumarmobiledev.blogspot.com
Mobile Development: September 2008
http://skumarmobiledev.blogspot.com/2008_09_01_archive.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Friday, September 12, 2008. Why Should we use Resource Files in defining UIs? Symbian (and its Licensees S60 and UIQ) provides a lot of the infrastructure for an application in Symbian.C that is already prebuilt[like MFC] so it is not really practical to reinvent the wheel with more code to rebuild the controls.
skumarmobiledev.blogspot.com
Mobile Development: January 2009
http://skumarmobiledev.blogspot.com/2009_01_01_archive.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Tuesday, January 27, 2009. Correct Symbian vaiable naming:. I-prefix for member variables. A-prefix for method parameters. C-prefix for classes that should be constructed on the heap. T-prefix for classes that can fit on the stack. L-postfix for methods that can leave. Labels: Back to School [Symbian].
skumarmobiledev.blogspot.com
Mobile Development
http://skumarmobiledev.blogspot.com/2008/10/how-to-choose-mobile-platform-when-it.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Wednesday, October 01, 2008. How to choose a mobile platform. Project scope and limitations. Before you even begin to consider technology platforms and target devices, you must have a crystal-clear picture of the software you're developing. To begin, ask yourself these questions:. Who is your target audience? Assum...
skumarmobiledev.blogspot.com
Mobile Development
http://skumarmobiledev.blogspot.com/2008/10/how-to-know-current-editing-state-of.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Saturday, October 25, 2008. How to know current editing state of TextEditor. You can use CAknEnv: EditingStateIndicator() to get then current editing starts. Code below show how to know if T9 is On or OFF. TBool t9 mode;. MAknEditingStateIndicator* editingindicator = CAknEnv: Static()- EditingStateIndicator();.
skumarmobiledev.blogspot.com
Mobile Development
http://skumarmobiledev.blogspot.com/2008/10/how-to-fource-application-to-use-agps.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Tuesday, October 21, 2008. How to fource application to use AGPS instead of GPS. Solution is you have circle through all the gps modules avaialble and select one with AGPS Support. For(TInt i = 0 ; i moduleCount ; i ). TInt error = iPosServer.GetModuleInfoByIndex( i, modInfo );. Or how can i resolv it? Skumar's Yet...
skumarmobiledev.blogspot.com
Mobile Development
http://skumarmobiledev.blogspot.com/2008/10/taking-screenshot-in-symbian.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Wednesday, October 01, 2008. Taking ScreenShot in Symbian. Below are steps we have to take ScreenShot and saving it to the file as .jpeg. IBitmap = new (ELeave)CFbsBitmap;. IBitmap- Create( TSize(176,208),EColor16M ); / Pass the Window Size to capture. 2Create a rectangle of the window you want to capture:. Poster ...
skumarmobiledev.blogspot.com
Mobile Development
http://skumarmobiledev.blogspot.com/2008/10/how-to-make-old-sdk-installations-foot.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Tuesday, October 21, 2008. How to make old sdk installations foot-print disappear. 1 Uninstall S60 3rd MR from you PC and delete S60 3rd MR folder. 3 Go to HKEY LOCAL MACHINE SOFTWARE Nokia com.nokia.s60 and check the counter value. 4 if the counter value not "0" then set it to 0. Subscribe to: Post Comments (Atom).
skumarmobiledev.blogspot.com
Mobile Development: October 2008
http://skumarmobiledev.blogspot.com/2008_10_01_archive.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Thursday, October 30, 2008. How to detect if phone has 3G enabled. Some items in you applications you want to do some action only when there is 3G network (like video streaming upload or video calling.) So how to detect that phone has 3G network. Saturday, October 25, 2008. TBool t9 mode;. T9 mode = ETrue;. How to ...
skumarmobiledev.blogspot.com
Mobile Development: June 2008
http://skumarmobiledev.blogspot.com/2008_06_01_archive.html
The Purpose of this Blog is to spread the less known facts to the Mobile developers. If you want to post any article on the Blog please send it to me my email ID is skumar.mobiledev@gmail.com. Friday, June 27, 2008. How to Open Browser with a url in UIQ3.x. OpenBrowserWithUrlL(const TDesC& aUrl, CCoeEnv& aCoeEnv). TVwsViewId id( KUidQWebApp, KUidQWebPageView);. ObjiUrl = aUrl;. ACoeEnv.AppUi()- ActivateViewL(id, KQWebCustomMsgId, buf);. Thursday, June 26, 2008. Below are the steps i followed. Signsis hel...