Hello
Use : J2ME Wireless tookit 2.2 MIDP1
All work fine while testing my jar file. Deploying OTA > I get the
java/lang/IllegalArgumentException on my nokia 3200.
I try to display a long text (approx... 8000 caracteres...)
Could you help me please ?
regards
david
public void MonC2() {
String C1="longggg text goes here....(8000 car.) ";
TextBox t = new TextBox("FirstMIDlet",C1, 8000, 0);
t.setMaxSize(8000);
display.setCurrent(t);
}
Stuart Leonard - 23 Sep 2004 19:28 GMT
Could it be that 8000 characters is too large for the J2ME TextBox
component? Just a guess.
> Hello
> Use : J2ME Wireless tookit 2.2 MIDP1
[quoted text clipped - 11 lines]
> display.setCurrent(t);
> }
fm - 24 Sep 2004 16:26 GMT
yes it is
I found another way
;o)
regards
david
> Could it be that 8000 characters is too large for the J2ME TextBox
> component? Just a guess.
[quoted text clipped - 14 lines]
>> display.setCurrent(t);
>> }