I am currently writing a J2ME app for a card game which begins at a menu screen which gives the option to select a number of different card games to play. This menu screen is a form and I need to know how to navigate to the new form for the games....

public void commandAction(Command c, Displayable s) {

        if(c.equals(exitComm)){ 
                  }
                else if(c.equals(gameComm))
                {
                 //start the queen game...create instance of QueensForm
                  QueensForm form = new QueensForm(null, "Queens");
                  display.setCurrent(form);
                  System.out.println("pressed play");
                }

As it stands the app compiles and runs, however when the play button is clicked an error occurs and it says the problem is on the line display.setCurrent(form); I am unsure of the problem and was wondering if anybody could help me to sort this out or suggest a better way to navigate throughout the forms in the app. Hope you can help! Thanks :-)

link|improve this question

25% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.