How to have more than one column in MIDP's Display?

Dear all,i'm doing a project by MIDP on palm os. i found that the Form class in MIDP on got a append() method to add text field. that makes the Form only have one column per row. how could i create a table that contains more than 1 column?Thanx alotJoey
[296 byte] By [joey829] at [2007-9-26 5:06:04]
# 1
I sure would like to know that too. It even inserts a newline between label and list when adding a ChoiceGroup. It looks like sh..
michaelBP at 2007-6-29 19:04:56 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

Hello,

It seems that the only way to do it is using Canvas class, but then you cannot use standard Items and you have to do all the painting and events responses by yourself :( I know that it sux, but right now I don't see anoter way to do it. If you find one, please let me know.

Chris Bilinski

Rinc at 2007-6-29 19:04:56 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
Speaking for myself, I would be happy if the MIDP implementation took "it's own medicine": Check for screen size and act on it.if ( screenWidth < lengthOfTitle + lengthOfDataField) { addnewline()}How hard can that be?
michaelBP at 2007-6-29 19:04:56 > top of Java-index,Java Mobility Forums,Java ME Technologies...