Hi,
I am creating a form where i only want to display some information
i cannot change anything in it so what should i use for it.
please help.
Hi,
I am creating a form where i only want to display some information
i cannot change anything in it so what should i use for it.
please help.
If u want to diaplay anything on the Form just use
Form frm=new Form("");
frm.append("msg");
or
String str="";
frm.append(str);
If u want to get the data displayed also, u use StringItem
StringItem si=new StringItem("Label", "Text");
frm.append(si);
si.getText();
si.getLabel();
Thanks with Regards,
R a j - The K e r n e l
Join Delhi-NCR Nokia Developer's Community,
Thank u yatibawri.
Have u got all of the solution?
I think this link will help u as a beginner
http://www.java2s.com/Tutorial/Java/...0430__J2ME.htm
thanks,
jitu_goldie..
KEEP TRYING..