0

How can I keep the combobox on the form in j2me with out using frameworks?

I have tried this but it is not showing any drop down for selection.

ChoiceGroup CoursePOP = new ChoiceGroup ("Pop Up choice", Choice.EXCLUSIVE, new String[] {"Python", "J2ME","Symbian"}, null);
gnat
  • 6,213
  • 108
  • 53
  • 73
Jugal Inani
  • 133
  • 1
  • 17

1 Answers1

-1

I have made a combobox by using List which can be done as

List box = new List("Mathematic Operations", List.POPUP);

this.menuList.append("ADD",null);

this.box.append("Subtract",null);

this.box.append("Multiply",null);

this.box.append("Divide",null);

Hope this helped you.

Regards,

prashantwosti
  • 980
  • 2
  • 7
  • 17