You Are Here:

Community: Forum Nokia Developer Community

Register Today

Register with Forum Nokia now and you'll enjoy the full benefits of the Forum Nokia membership.

Register Login
Community Highlights

Wiki article of the week

How to use USB cable connection in Java ME

Champion of the month

Forum Nokia Champion Jim Gilmour
Read more about Jim on the Champions website.


Forum Nokia Events

MobileMonday — Dallas
February 15, 2010
Dallas

Mobile World Congress
February 15, 2010
Barcelona, Spain

WIPJAM@MWC
February 18, 2010
Barcelona, Spain

Building Maemo and Symbian apps using Qt Creator (Session 1)
February 22, 2010
2 p.m. London, 4 p.m. Helsinki

Building Maemo and Symbian apps using Qt Creator (Session 2 - In Portuguese)
February 24, 2010
11 a.m. New York, 1 p.m. Sao Paolo, 3 p.m. Azores


View all
Cafe People

RSS feed Latest from Blogs

Latest from the Forum Nokia Blogs

Forum Nokia Podcasts: Episode 033 - Discussion with Ian Smith, SVP of Fizwoz.com

In this episode, I-magine Media’s Doug Wolens speaks with Ian Smith, the founder and Senior Vice President of Fizwoz.com, a premier online marketplace for mobile media. During their conversation, Ian explains what mobile technology means to him, and how Fizwoz will change how consumers use their mobile devices. What is the end result? Allowing consumers to make money from the pictures... 9 February 2010, 10:49 pm bill.volpe

How to develop Flash Lite enabled WRT widgets with Aptana and FDT

I've published a couple of articles explaining how to setup a single integrated environment that allows to develop Web Runtime widgets with Flash Lite content . The environment is based on Eclipse and three different plugins: Aptana Nokia Web Runtime plugin for Aptana FDT The articles explain the complete setup process , and show how to develop a simple... 9 February 2010, 1:24 pm jappit

Guarana UI video from INdT

9 February 2010, 11:30 am wmseto

Programming the Mobile Web, the book available

I'm happy to announce the availability of my upcoming new book, "Programming the Mobile Web" from O'Reilly. It is available now in Rough Cuts version (online) open for feedback for the final version to be printed in a couple of months. The book covers the mobile web as a whole with all possible platforms (including Nokia's platforms), compatibility and technologies. Today,... 6 February 2010, 1:19 am firt

Reusing the N97 memory reorganizer

Many people have found via Software Update there is a nice little application called Memory Reorganizer that recovers some of the scarce memory on the N97's C drive. The side affect of running this once is that the app will uninstall itself when its finished doing its magic job of recovering your memory... Unfortunately if you  are like me and install lots of apps, memory... 5 February 2010, 8:45 pm Paul.Todd

Sensible Sudoku Brings Beauty and Tranquility to Puzzle Game

Sensible Sudoku is a fun, lovingly designed Sudoku implementation with a great interface, elegant audio and enjoyable game play for Sudoku addicts of any level. Developed by Ludimate, the gaming division of Portugal's Faron Studio, Sensible Sudoku has registered over 400,000 downloads in its first few months of availability in Ovi Store. What would make a puzzle game... 5 February 2010, 1:41 am OviPublisherSuccesses

View all

RSS feed Latest from Discussion Boards

Latest from the Forum Nokia Discussion Boards

e72 mail question

I recently got a e72 and configured my ISP mail on it my email is working and I am able to send/receive however e72 did not ask me anything about 'push mail' so it my account working through push mail or not ? I did not make any account or signed up for any push mail service at Nokia website? does it just work directly? frankly I don't see any difference, the mail worked in similar... 9 February 2010, 9:13 pm barcoda

Is it possible to avoid the pause between pointerPressed and pointerDragged?

Is it possible to avoid the pause between pointerPressed and pointerDragged? 9 February 2010, 8:08 pm ivanavdeyev

sample eswt application for Nokia N97

hello i am new in eswt and LWUIT api i am new comers in development of Nokia N97 Application i have seen lot of articles of eswt control in many link but i can not find some sample application source code and its link in net i have also not find anything new in the LWUIT api based application i also need some sample application screen shots and source code link of... 9 February 2010, 7:39 pm yatin_indianic

Observer handle for portrait/landscape mode???

Hello, I have 2 Questions: 1.) Is it possible to open local (f.e. on a memory card) html-files from J2ME in the browser (if I open directly from filemanager, it opens the html-file in browser)? 2.) Is there any way something like an observer which constantly observes if phone is in portrait or landscape mode, and then handles? EXAMPLE: I open the J2ME app. If... 9 February 2010, 7:35 pm carsamba55

How to select among various VKB modes in 5.0?

Hi, I've started working on 5.0 sdk and i'm using CAknSearchField. When I tap on the search field editor, alphanumeric keyboard opens with a option of opening handwriting mode. To the contrary, when I run the same code on device, I am given options of switching to either of Mini QWERTY keyboard, Full Screen QWERTY keyboard or handwriting options. As per my understanding, 5.0 supports... 9 February 2010, 7:30 pm jitesh.s

How we can call another module from main class

Code: import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class Menu extends MIDlet{                 public static Display display;         public CanvasMenu canvas;                 public Menu()         {  ... 9 February 2010, 7:26 pm dineshdreamworld

View all

RSS feed Latest from Wiki

Latest from the Forum Nokia Wiki

How to create and destroy stackable windows and use event filters in Maemo 5

Assume you want to create and destroy stackable windows dynamically. We start with main.cpp: #include <QApplication>   #include "child.h"   int main ( int argc, char * argv [ ] ) { QApplication a ( argc, argv ) ;   Child child ; child. show ( ) ;   return a. exec ( )... 9 February 2010, 7:30 pm Divanov

Using MCE interface for vibration activation in Maemo 5

N900 device has vibrator, which can be controlled from application. There is MCE interface for controlling vibrator through DBus. MCE Vibrator interface D-Bus methods - online documentation. One can use dbus-send command line utility to try those methods without code writing. dbus-send manual page - note, an example contains missing quote. Let's make an application, which plays all... 9 February 2010, 6:32 pm Divanov

Using MCE interface for LED activation in Maemo 5

N900 device has LED, which can be controlled from application. There is MCE interface for controlling LED through DBus. MCE LED interface D-Bus methods - online documentation. One can use dbus-send command line utility to try those methods without code writing. dbus-send manual page - note, an example contains missing quote. Let's make an application, which plays all predefined LED... 9 February 2010, 5:39 pm Divanov

How to read IMEI in Qt application for Maemo 5

Maemo 5 provides DBus interface for obtaining IMEI of the phone. The name of a service is com.nokia.phone.SIM , a path name is /com/nokia/phone/SIM/security , an interface name is Phone.Sim.Security . Finally the method's name responsible for obtaining IMEI is get_imei You can verify that it works using dbus-send utility in XTerm: dbus-send --system --type=method_call --print-reply... 9 February 2010, 2:19 pm Divanov

DT Dev:Deutsche Maps

Testing DT Wiki page Error creating thumbnail: Image type not supported 9 February 2010, 2:16 pm Jpilomia

Nokia optimized template/theme for WordPress Mobile Pack and Drupal

Latest version 1.20 of the WordPress Mobile Pack now displays advanced themes for Nokia devices. There are three grades of themes designed for low-, mid-, and high-end Nokia devices, the latter of which also provides full support for other platforms, including Android, iPhone and Palm devices. The theme is based on the Nokia Mobile Web Templates, which includes components and UI styles... 9 February 2010, 2:12 pm Tasala

View all

RSS feed Forum Nokia Champions

Meet the Forum Nokia Champions

  • Champion Mariam Dholkawala
  • Champion Nathan Eagle
  • Champion Faisal Iqbal
  • Champion Jacek Wojciechowski

Forum Nokia Champion is an invitation-only reward and recognition programme that honours selected Forum Nokia members for ther activities in and contributions to the mobile industry. These individuals, known as Forum Nokia Champions, are chosen for the programme on the basis of their outstanding skills and dedication to the Forum Nokia community. They represent all regions of the world and are experts in many areas of mobile development. Get to know the Forum Nokia Champions

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2010 Nokia