• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Mulltiple forms or Multiple List

 
Ranch Hand
Posts: 129
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All.

Can I have Multiple Form or Multiple List or Multiple TextBox on the same screen.

In short I want to display Multiple TextBoxes on same screen.

Thanks

[Edited the title]
[ February 09, 2005: Message edited by: Michael Yuan ]
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can have multiple TextField entries on the same form ... just append new TextFields...

As for the Multiple forms .. no, the whole point is that its a form that is being displayed, thats the container object so you have one visible at a time.

As for the multiple list .. also a no, unless you write your own Custom component with MIDP2.

Cheers

Kirk
 
Ranch Hand
Posts: 132
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can have multiple ChoiceGroups in a Form, which would be similar to having multiple Lists appearing on one screen.
 
reply
    Bookmark Topic Watch Topic
  • New Topic